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
+12
View File
@@ -0,0 +1,12 @@
services:
api-server:
build: .
image: pilotvault-api-server
container_name: pilotvault-api-server
# Config comes from .env (POCKETBASE_URL, CORS_ALLOW_ORIGINS, and the
# optional POCKETBASE_ADMIN_* service account). API_ADDR defaults to :8080.
env_file:
- .env
ports:
- "8080:8080"
restart: unless-stopped