MQL5-Google-Onedrive/config/startup_config.json
google-labs-jules[bot] 6b0f95b374 feat: add web dashboard for cloud deployment
- 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.
2026-01-18 22:52:05 +00:00

55 行
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": ""
}
}