mirror of
https://github.com/chrisnov-it/quantumbotx.git
synced 2026-07-27 18:57:47 +00:00
5b41fdea95
- 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.
22 lines
287 B
JSON
22 lines
287 B
JSON
{
|
|
"version": 2,
|
|
"builds": [
|
|
{
|
|
"src": "api/app.py",
|
|
"use": "@vercel/python",
|
|
"config": {
|
|
"runtime": "python3.12"
|
|
}
|
|
}
|
|
],
|
|
"routes": [
|
|
{
|
|
"src": "/(.*)",
|
|
"dest": "api/app.py"
|
|
}
|
|
],
|
|
"env": {
|
|
"SKIP_MT5_INIT": "1"
|
|
}
|
|
}
|