Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .env.example
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@

AWS_ACCESS_KEY_ID=your_access_key_here
AWS_SECRET_ACCESS_KEY=your_secret_key_here
#AWS_SESSION_TOKEN=
AWS_REGION=us-east-1

# Database configuration
Expand All @@ -25,6 +26,8 @@ OPENSEARCH_PASSWORD=your_opensearch_password
# Storage System
STORAGE_BACKEND=s3
STORAGE_ROOT_PATH=s3://my-storage-bucket
DEMUX_WORKFLOW_CONFIGS_BUCKET_URI=s3://yourbucket/demux-configs

# AWS Secrets Manager (for production)
# ENV_SECRETS=your-secrets-manager-name
CHAT_API_BASE_URL=http://localhost:3000/api/v1
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -24,3 +24,8 @@ wheels/
.elasticbeanstalk/*
!.elasticbeanstalk/*.cfg.yml
!.elasticbeanstalk/*.global.yml

# Test artifacts
.pytest_cache/
htmlcov/
*.log
2 changes: 1 addition & 1 deletion Procfile
Original file line number Diff line number Diff line change
@@ -1 +1 @@
web: gunicorn main:app --workers 4 --worker-class uvicorn.workers.UvicornWorker --bind 0.0.0.0:8000 --timeout 120 --access-logfile - --error-logfile -
web: gunicorn main:app --workers 2 --worker-class uvicorn.workers.UvicornWorker --bind 0.0.0.0:8000 --timeout 120 --graceful-timeout 120 --access-logfile - --error-logfile -
1 change: 1 addition & 0 deletions api/chat/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@

Loading