| # .env file | |
| APP_NAME=EvoAgentX | |
| DEBUG=True | |
| API_PREFIX=/api/v1 | |
| HOST=0.0.0.0 | |
| PORT=8000 | |
| # MongoDB settings | |
| MONGODB_URL=mongodb+srv://eax:eax@cluster0.1lkbi0y.mongodb.net/?retryWrites=true&w=majority&appName=Cluster0 | |
| MONGODB_DB_NAME=evoagentx | |
| # JWT Authentication | |
| SECRET_KEY=your-secret-key | |
| ACCESS_TOKEN_EXPIRE_MINUTES=30 | |
| ALGORITHM=HS256 | |
| # Logging | |
| LOG_LEVEL=INFO | |
| # CORS settings | |
| ALLOWED_HOSTS: List[str] | |
| CORS_ORIGINS: List[str] |