File size: 426 Bytes
5374a2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 |
# .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] |