initial data-service started

This commit is contained in:
Bojan Kucera 2025-06-08 13:46:03 -04:00
parent 8681c34529
commit f68e620c76
6 changed files with 531 additions and 178 deletions

98
.vscode/tasks.json vendored
View file

@ -2,98 +2,18 @@
"version": "2.0.0",
"tasks": [
{
"label": "Start Market Data Gateway",
"label": "Start Data Service",
"type": "shell",
"command": "bun",
"args": ["run", "dev"],
"options": {
"cwd": "${workspaceFolder}/apps/core-services/market-data-gateway"
},
"group": "build",
"presentation": {
"echo": true,
"reveal": "always",
"focus": false,
"panel": "new",
"showReuseMessage": true,
"clear": false
},
"isBackground": true,
"problemMatcher": []
},
{
"label": "Start Trading Dashboard",
"type": "shell",
"command": "bun",
"args": ["run", "dev"],
"options": {
"cwd": "${workspaceFolder}/apps/interface-services/trading-dashboard"
},
"group": "build",
"presentation": {
"echo": true,
"reveal": "always",
"focus": false,
"panel": "new",
"showReuseMessage": true,
"clear": false
},
"isBackground": true,
"problemMatcher": []
},
{
"label": "Start Strategy Orchestrator",
"type": "shell",
"command": "bun",
"args": ["run", "dev"],
"options": {
"cwd": "${workspaceFolder}/apps/intelligence-services/strategy-orchestrator"
},
"group": "build",
"presentation": {
"echo": true,
"reveal": "always",
"focus": false,
"panel": "new",
"showReuseMessage": true,
"clear": false
},
"isBackground": true,
"problemMatcher": []
},
{
"label": "Start Risk Guardian",
"type": "shell",
"command": "bun",
"args": ["run", "dev"],
"options": {
"cwd": "${workspaceFolder}/apps/core-services/risk-guardian"
},
"group": "build",
"presentation": {
"echo": true,
"reveal": "always",
"focus": false,
"panel": "new",
"showReuseMessage": true,
"clear": false
},
"isBackground": true,
"problemMatcher": []
},
{
"label": "Start All Services",
"dependsOn": [
"Start Market Data Gateway",
"Start Trading Dashboard",
"Start Strategy Orchestrator",
"Start Risk Guardian"
"args": [
"run",
"dev"
],
"dependsOrder": "parallel",
"group": {
"kind": "build",
"isDefault": true
}
"group": "build",
"isBackground": true,
"problemMatcher": [
"$tsc"
]
}
]
}