mirror of
https://github.com/chrisnov-it/quantumbotx.git
synced 2026-07-27 18:57:47 +00:00
351292c26a
- Streamlined .env.example to include only essential Flask and MT5 configs for production environments - Added .vercel directory to .gitignore for clean Vercel deployments - Enabled internationalization by adding data-i18n attributes to strategy switcher UI elements - Updated MT5 setup guide and roadmap documentation for clarity and current focus This change simplifies configuration for server deployment while enhancing UI accessibility across languages.
13 lines
308 B
Bash
13 lines
308 B
Bash
# Flask Configuration
|
|
FLASK_DEBUG=False
|
|
FLASK_HOST=127.0.0.1
|
|
FLASK_PORT=5000
|
|
|
|
# MT5 Configuration (required for local development)
|
|
MT5_LOGIN=your_mt5_account_number
|
|
MT5_PASSWORD=your_mt5_password
|
|
MT5_SERVER=your_mt5_server
|
|
|
|
# Skip MT5 initialization in deployment environments (Vercel, etc.)
|
|
SKIP_MT5_INIT=0
|