wip misc; cleaup launch
This commit is contained in:
180
.vscode/launch.json
vendored
180
.vscode/launch.json
vendored
@@ -1,42 +1,7 @@
|
||||
{
|
||||
"version": "0.2.0",
|
||||
"configurations": [
|
||||
{
|
||||
"name": "📊 Enhanced Web Dashboard (Safe)",
|
||||
"type": "python",
|
||||
"request": "launch",
|
||||
"program": "main_clean.py",
|
||||
"args": [
|
||||
"--port",
|
||||
"8051",
|
||||
"--no-training"
|
||||
],
|
||||
"console": "integratedTerminal",
|
||||
"justMyCode": false,
|
||||
"env": {
|
||||
"PYTHONUNBUFFERED": "1",
|
||||
"ENABLE_REALTIME_CHARTS": "1"
|
||||
},
|
||||
"preLaunchTask": "Kill Stale Processes"
|
||||
},
|
||||
{
|
||||
"name": "📊 Enhanced Web Dashboard (Full)",
|
||||
"type": "python",
|
||||
"request": "launch",
|
||||
"program": "main_clean.py",
|
||||
"args": [
|
||||
"--port",
|
||||
"8051"
|
||||
],
|
||||
"console": "integratedTerminal",
|
||||
"justMyCode": false,
|
||||
"env": {
|
||||
"PYTHONUNBUFFERED": "1",
|
||||
"ENABLE_REALTIME_CHARTS": "1",
|
||||
"ENABLE_NN_MODELS": "1"
|
||||
},
|
||||
"preLaunchTask": "Kill Stale Processes"
|
||||
},
|
||||
|
||||
{
|
||||
"name": "📊 Clean Dashboard (Legacy)",
|
||||
"type": "python",
|
||||
@@ -49,51 +14,7 @@
|
||||
"ENABLE_REALTIME_CHARTS": "1"
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "🚀 Main System",
|
||||
"type": "python",
|
||||
"request": "launch",
|
||||
"program": "main.py",
|
||||
"console": "integratedTerminal",
|
||||
"justMyCode": false,
|
||||
"env": {
|
||||
"PYTHONUNBUFFERED": "1"
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "🔬 System Test & Validation",
|
||||
"type": "python",
|
||||
"request": "launch",
|
||||
"program": "main.py",
|
||||
"args": [
|
||||
"--mode",
|
||||
"test"
|
||||
],
|
||||
"console": "integratedTerminal",
|
||||
"justMyCode": false,
|
||||
"env": {
|
||||
"PYTHONUNBUFFERED": "1",
|
||||
"TEST_ALL_COMPONENTS": "1"
|
||||
}
|
||||
},
|
||||
|
||||
{
|
||||
"name": "🧪 CNN Live Training with Analysis",
|
||||
"type": "python",
|
||||
"request": "launch",
|
||||
"program": "training/enhanced_cnn_trainer.py",
|
||||
"console": "integratedTerminal",
|
||||
"justMyCode": false,
|
||||
"env": {
|
||||
"PYTHONUNBUFFERED": "1",
|
||||
"ENABLE_BACKTESTING": "1",
|
||||
"ENABLE_ANALYSIS": "1",
|
||||
"ENABLE_LIVE_VALIDATION": "1",
|
||||
"CUDA_VISIBLE_DEVICES": "0"
|
||||
},
|
||||
"preLaunchTask": "Kill Stale Processes",
|
||||
"postDebugTask": "Start TensorBoard"
|
||||
},
|
||||
|
||||
{
|
||||
"name": "🏗️ Python Debugger: Current File",
|
||||
"type": "debugpy",
|
||||
@@ -119,38 +40,7 @@
|
||||
},
|
||||
"preLaunchTask": "Kill Stale Processes"
|
||||
},
|
||||
{
|
||||
"name": "🔥 Real-time RL COB Trader (400M Parameters)",
|
||||
"type": "python",
|
||||
"request": "launch",
|
||||
"program": "run_realtime_rl_cob_trader.py",
|
||||
"console": "integratedTerminal",
|
||||
"justMyCode": false,
|
||||
"env": {
|
||||
"PYTHONUNBUFFERED": "1",
|
||||
"CUDA_VISIBLE_DEVICES": "0",
|
||||
"PYTORCH_CUDA_ALLOC_CONF": "max_split_size_mb:256",
|
||||
"ENABLE_REALTIME_RL": "1"
|
||||
},
|
||||
"preLaunchTask": "Kill Stale Processes"
|
||||
},
|
||||
{
|
||||
"name": "🚀 Integrated COB Dashboard + RL Trading",
|
||||
"type": "python",
|
||||
"request": "launch",
|
||||
"program": "run_integrated_rl_cob_dashboard.py",
|
||||
"console": "integratedTerminal",
|
||||
"justMyCode": false,
|
||||
"env": {
|
||||
"PYTHONUNBUFFERED": "1",
|
||||
"CUDA_VISIBLE_DEVICES": "0",
|
||||
"PYTORCH_CUDA_ALLOC_CONF": "max_split_size_mb:256",
|
||||
"ENABLE_REALTIME_RL": "1",
|
||||
"COB_BTC_BUCKET_SIZE": "10",
|
||||
"COB_ETH_BUCKET_SIZE": "1"
|
||||
},
|
||||
"preLaunchTask": "Kill Stale Processes"
|
||||
},
|
||||
|
||||
{
|
||||
"name": " *🧹 Clean Trading Dashboard (Universal Data Stream)",
|
||||
"type": "python",
|
||||
@@ -191,52 +81,9 @@
|
||||
"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)",
|
||||
"name": "🔧 COBY Development Mode (Auto-reload) - main",
|
||||
"type": "python",
|
||||
"request": "launch",
|
||||
"program": "COBY/main.py",
|
||||
@@ -259,23 +106,8 @@
|
||||
"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
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
],
|
||||
"compounds": [
|
||||
|
Reference in New Issue
Block a user