Initial commit: PilotVault multi-service project

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>
This commit is contained in:
tajniak81
2026-07-13 11:43:33 +02:00
co-authored by Claude Opus 4.8
commit afc6952eda
172 changed files with 24591 additions and 0 deletions
+33
View File
@@ -0,0 +1,33 @@
{
"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
}
]
}