mirror of
https://github.com/awslabs/amazon-bedrock-agentcore-samples.git
synced 2025-09-08 20:50:46 +00:00
26 lines
566 B
Bash
26 lines
566 B
Bash
# AWS Configuration
|
|
AWS_REGION=us-east-1
|
|
|
|
# Optional: AWS Profile (if using AWS CLI profiles)
|
|
AWS_PROFILE=default
|
|
|
|
# Backend Configuration
|
|
BACKEND_HOST=0.0.0.0
|
|
BACKEND_PORT=8000
|
|
|
|
# Frontend Configuration
|
|
REACT_APP_API_URL=http://localhost:8000
|
|
|
|
# Timeout Configurations (in seconds)
|
|
# AWS Bedrock timeout settings
|
|
AWS_READ_TIMEOUT=600
|
|
AWS_CONNECT_TIMEOUT=120
|
|
AWS_MAX_RETRIES=5
|
|
|
|
# AgentCore session timeout (maximum allowed)
|
|
AGENTCORE_SESSION_TIMEOUT=1800
|
|
|
|
# Frontend execution timeout display
|
|
REACT_APP_EXECUTION_TIMEOUT_WARNING=300
|
|
REACT_APP_MAX_EXECUTION_TIME=600
|