launch configs

This commit is contained in:
Dobromir Popov
2025-08-05 17:36:58 +03:00
parent 468fa0dcd6
commit dc326acf85
2 changed files with 161 additions and 21 deletions

109
.vscode/launch.json vendored
View File

@ -190,6 +190,91 @@
"group": "Universal Data Stream",
"order": 2
}
},
{
"name": "🌐 COBY Multi-Exchange Data Aggregation",
"type": "python",
"request": "launch",
"program": "COBY/main.py",
"console": "integratedTerminal",
"justMyCode": false,
"env": {
"PYTHONUNBUFFERED": "1",
"COBY_API_HOST": "0.0.0.0",
"COBY_API_PORT": "8080",
"COBY_WEBSOCKET_PORT": "8081"
},
"preLaunchTask": "Kill Stale Processes",
"presentation": {
"hidden": false,
"group": "COBY System",
"order": 1
}
},
{
"name": "🔍 COBY Debug Mode",
"type": "python",
"request": "launch",
"program": "COBY/main.py",
"args": [
"--debug"
],
"console": "integratedTerminal",
"justMyCode": false,
"env": {
"PYTHONUNBUFFERED": "1",
"COBY_API_HOST": "localhost",
"COBY_API_PORT": "8080",
"COBY_WEBSOCKET_PORT": "8081",
"COBY_LOG_LEVEL": "DEBUG"
},
"preLaunchTask": "Kill Stale Processes",
"presentation": {
"hidden": false,
"group": "COBY System",
"order": 2
}
},
{
"name": "🔧 COBY Development Mode (Auto-reload)",
"type": "python",
"request": "launch",
"program": "COBY/main.py",
"args": [
"--debug",
"--reload"
],
"console": "integratedTerminal",
"justMyCode": false,
"env": {
"PYTHONUNBUFFERED": "1",
"COBY_API_HOST": "localhost",
"COBY_API_PORT": "8080",
"COBY_WEBSOCKET_PORT": "8081",
"COBY_LOG_LEVEL": "DEBUG"
},
"preLaunchTask": "Kill Stale Processes",
"presentation": {
"hidden": false,
"group": "COBY System",
"order": 3
}
},
{
"name": "🏥 COBY Health Check",
"type": "python",
"request": "launch",
"program": "COBY/health_check.py",
"console": "integratedTerminal",
"justMyCode": false,
"env": {
"PYTHONUNBUFFERED": "1"
},
"presentation": {
"hidden": false,
"group": "COBY System",
"order": 4
}
}
],
@ -261,6 +346,30 @@
"order": 5
}
},
{
"name": "🌐 COBY Multi-Exchange System (Full Stack)",
"configurations": [
"🌐 COBY Multi-Exchange Data Aggregation"
],
"stopAll": true,
"presentation": {
"hidden": false,
"group": "COBY System",
"order": 6
}
},
{
"name": "🔧 COBY Development Environment",
"configurations": [
"🔧 COBY Development Mode (Auto-reload)"
],
"stopAll": true,
"presentation": {
"hidden": false,
"group": "COBY System",
"order": 7
}
}
]
}