mirror of
https://github.com/A6-9V/MQL5-Google-Onedrive.git
synced 2026-04-11 05:50:56 +00:00
- Implemented a Flask-based web dashboard in `scripts/web_dashboard.py` to serve project status and documentation. - Integrated the web dashboard into `config/startup_config.json` as a managed component. - Updated `requirements.txt` with `flask` and `markdown` dependencies. - Added `/health` endpoint for cloud platform health checks. - Verified system integrity with existing validation and testing scripts.
55 lines
1.4 KiB
JSON
55 lines
1.4 KiB
JSON
{
|
|
"description": "Startup configuration for MQL5 Trading Automation",
|
|
"version": "1.0.0",
|
|
"components": [
|
|
{
|
|
"name": "Web Dashboard",
|
|
"executable": "python",
|
|
"args": ["scripts/web_dashboard.py"],
|
|
"working_dir": null,
|
|
"wait_seconds": 2,
|
|
"required": true,
|
|
"platform_specific": null
|
|
},
|
|
{
|
|
"name": "Repository Validator",
|
|
"executable": "python",
|
|
"args": ["scripts/ci_validate_repo.py"],
|
|
"working_dir": null,
|
|
"wait_seconds": 2,
|
|
"required": false,
|
|
"platform_specific": null
|
|
},
|
|
{
|
|
"name": "MT5 Terminal (Exness)",
|
|
"executable": "C:\\Program Files\\MetaTrader 5 EXNESS\\terminal64.exe",
|
|
"args": ["/portable"],
|
|
"working_dir": null,
|
|
"wait_seconds": 15,
|
|
"required": true,
|
|
"platform_specific": "windows"
|
|
}
|
|
],
|
|
"settings": {
|
|
"log_retention_days": 30,
|
|
"max_startup_retries": 3,
|
|
"startup_delay_seconds": 5
|
|
},
|
|
"mt5_paths": {
|
|
"windows": [
|
|
"C:\\Program Files\\MetaTrader 5 EXNESS\\terminal64.exe",
|
|
"C:\\Program Files\\Exness Terminal\\terminal64.exe",
|
|
"C:\\Program Files\\MetaTrader 5\\terminal64.exe",
|
|
"%APPDATA%\\MetaQuotes\\Terminal\\terminal64.exe"
|
|
],
|
|
"wsl": [
|
|
"/mnt/c/Program Files/Exness Terminal/terminal64.exe",
|
|
"/mnt/c/Program Files/MetaTrader 5/terminal64.exe"
|
|
]
|
|
},
|
|
"notifications": {
|
|
"enabled": false,
|
|
"email": "",
|
|
"webhook_url": ""
|
|
}
|
|
}
|