Spaces:
Sleeping
Sleeping
| # Environment Configuration | |
| FLASK_ENV=development | |
| DEBUG=True | |
| # Server Configuration | |
| SERVER_HOST=0.0.0.0 | |
| SERVER_PORT=7860 | |
| # For production hosting (Heroku, Railway, etc.) | |
| PORT=7860 | |
| # API Configuration (leave empty for relative URLs) | |
| API_BASE_URL= | |
| FRONTEND_URL= | |
| # Database Configuration | |
| DB_FILE=storage/conversations.db | |
| STORAGE_DIR=storage | |
| DATA_DIR=data | |
| # Email Configuration for AI Mental Health Chatbot | |
| SMTP_SERVER=smtp.gmail.com | |
| SMTP_PORT=587 | |
| SMTP_USERNAME=it.elias38@gmail.com | |
| SMTP_PASSWORD=your-app-password-here | |
| FROM_EMAIL=noreply@aimhsa.rw | |
| # SMS Configuration | |
| HDEV_SMS_API_ID=HDEV-23fb1b59-aec0-4aef-a351-bfc1c3aa3c52-ID | |
| HDEV_SMS_API_KEY=HDEV-6e36c286-19bb-4b45-838e-8b5cd0240857-KEY | |
| # Chat Model Configuration | |
| CHAT_MODEL=meta-llama/llama-4-maverick | |
| EMBED_MODEL=nomic-embed-text | |
| SENT_EMBED_MODEL=nomic-embed-text | |
| OLLAMA_BASE_URL=https://openrouter.ai/api/v1 | |
| OLLAMA_API_KEY=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 | |
| # Security Note: Never commit this file with real credentials to version control | |