mirror of
https://github.com/chrisnov-it/quantumbotx.git
synced 2026-07-28 03:07:53 +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.
11 lines
190 B
Python
11 lines
190 B
Python
import os
|
|
from core import create_app
|
|
|
|
# Set environment to skip MT5 initialization on Vercel
|
|
os.environ['SKIP_MT5_INIT'] = '1'
|
|
|
|
app = create_app()
|
|
|
|
if __name__ == '__main__':
|
|
app.run()
|