Add API Server (Go/PocketBase), Web App (Go BFF + Vue), Fly App (Flutter/DJI MSDK), Adobe Plugin, and Docker/Docker AIO deployment configs. Design assets and build artifacts are gitignored. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
34 lines
918 B
JSON
34 lines
918 B
JSON
{
|
|
"version": "0.0.1",
|
|
"configurations": [
|
|
{
|
|
"name": "api-panel",
|
|
"runtimeExecutable": "E:\\VS Code Projects\\PilotVault\\API Server\\api-server.exe",
|
|
"runtimeArgs": [],
|
|
"cwd": "E:\\VS Code Projects\\PilotVault\\API Server",
|
|
"port": 8080
|
|
},
|
|
{
|
|
"name": "web-app",
|
|
"runtimeExecutable": "E:\\VS Code Projects\\PilotVault\\Web App\\dji-web-app.exe",
|
|
"runtimeArgs": [],
|
|
"cwd": "E:\\VS Code Projects\\PilotVault\\Web App",
|
|
"port": 8090
|
|
},
|
|
{
|
|
"name": "web-app-ui-dev",
|
|
"runtimeExecutable": "npm",
|
|
"runtimeArgs": ["run", "dev"],
|
|
"cwd": "E:\\VS Code Projects\\PilotVault\\Web App\\ui",
|
|
"port": 5173
|
|
},
|
|
{
|
|
"name": "api-panel-ui-dev",
|
|
"runtimeExecutable": "npm",
|
|
"runtimeArgs": ["run", "dev"],
|
|
"cwd": "E:\\VS Code Projects\\PilotVault\\API Server\\panel",
|
|
"port": 5174
|
|
}
|
|
]
|
|
}
|