mirror of
https://github.com/awslabs/amazon-bedrock-agentcore-samples.git
synced 2025-09-08 20:50:46 +00:00
23 lines
703 B
Plaintext
23 lines
703 B
Plaintext
# AWS Configuration
|
|
# Option 1: Use AWS Profile (Recommended)
|
|
AWS_PROFILE=default
|
|
AWS_REGION=us-east-1
|
|
|
|
# Option 2: Use Access Keys (only if no profile is set up)
|
|
# AWS_ACCESS_KEY_ID=your_access_key_here
|
|
# AWS_SECRET_ACCESS_KEY=your_secret_key_here
|
|
|
|
# Backend Configuration
|
|
BACKEND_HOST=0.0.0.0
|
|
BACKEND_PORT=8000
|
|
|
|
# Frontend Configuration
|
|
REACT_APP_API_URL=http://localhost:8000
|
|
|
|
# Notes:
|
|
# - AWS Profile authentication is preferred over access keys
|
|
# - If AWS_PROFILE is set, access keys will be ignored
|
|
# - Make sure your AWS profile has access to Amazon Bedrock
|
|
# - For AgentCore features, you need bedrock-agentcore permissions
|
|
# - Without AgentCore permissions, the app will use Strands simulation
|