- Parameterize CORS_ORIGINS in docker-compose.swarm.yml - Add .env.example with configuration options - Create comprehensive LOCAL_DEVELOPMENT.md guide - Update README.md with environment variable documentation - Provide alternatives for local development without production domain 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
58 lines
904 B
Plaintext
58 lines
904 B
Plaintext
# FastAPI and ASGI
|
|
fastapi==0.104.1
|
|
uvicorn[standard]==0.24.0
|
|
python-multipart==0.0.6
|
|
gunicorn==21.2.0
|
|
|
|
# Database
|
|
sqlalchemy==2.0.23
|
|
psycopg2-binary==2.9.9
|
|
asyncpg==0.29.0
|
|
alembic==1.12.1
|
|
|
|
# Redis and Caching
|
|
redis==5.0.1
|
|
aioredis==2.0.1
|
|
|
|
# HTTP Clients
|
|
aiohttp==3.9.1
|
|
httpx==0.25.2
|
|
requests==2.31.0
|
|
|
|
# SSH Client for CLI Agents
|
|
asyncssh==2.14.2
|
|
|
|
# Authentication and Security
|
|
python-jose[cryptography]==3.3.0
|
|
passlib[bcrypt]==1.7.4
|
|
python-multipart==0.0.6
|
|
|
|
# Configuration and Environment
|
|
pydantic==2.5.0
|
|
pydantic-settings==2.0.3
|
|
python-dotenv==1.0.0
|
|
|
|
# YAML and JSON
|
|
PyYAML==6.0.1
|
|
orjson==3.9.10
|
|
|
|
# WebSockets and Socket.IO
|
|
websockets==12.0
|
|
python-socketio==5.10.0
|
|
|
|
# Monitoring and Metrics
|
|
prometheus-client==0.19.0
|
|
|
|
# Utilities
|
|
python-dateutil==2.8.2
|
|
click==8.1.7
|
|
rich==13.7.0
|
|
psutil==5.9.6
|
|
markdown==3.5.1
|
|
|
|
# Development
|
|
pytest==7.4.3
|
|
pytest-asyncio==0.21.1
|
|
black==23.11.0
|
|
isort==5.12.0
|
|
mypy==1.7.1 |