LandveX Internal Pilot: DEPLOYED
- API running on port 3002 - UI running on port 3003 - Version endpoint: /version - Health check: /health - Platform Readiness: Mission Import ✅, Artifact Registry ✅, Storage ✅, Operations ✅, Developer Mode ✅ Go Live Checklist updated with current status. Docker Compose configured (ports adjusted for existing services). Next: Pilot 001 — Break the system! Test: bad coverage, large videos, interrupted upload, multiple phones, bad GPS, darkness, rain, poor lighting.
This commit is contained in:
+11
-11
@@ -4,24 +4,24 @@ services:
|
||||
# API
|
||||
api:
|
||||
build:
|
||||
context: ./packages/api
|
||||
dockerfile: Dockerfile
|
||||
context: .
|
||||
dockerfile: packages/api/Dockerfile
|
||||
ports:
|
||||
- "3002:3002"
|
||||
environment:
|
||||
- NODE_ENV=pilot
|
||||
- PORT=3002
|
||||
- DATABASE_URL=postgresql://postgres:postgres@db:5432/landvex
|
||||
- DATABASE_URL=postgresql://postgres:***@db:5432/landvex
|
||||
depends_on:
|
||||
- db
|
||||
volumes:
|
||||
- uploads:/app/uploads
|
||||
- uploads:/app/packages/api/uploads
|
||||
|
||||
# UI
|
||||
ui:
|
||||
build:
|
||||
context: ./packages/ui
|
||||
dockerfile: Dockerfile
|
||||
context: .
|
||||
dockerfile: packages/ui/Dockerfile
|
||||
ports:
|
||||
- "3003:80"
|
||||
depends_on:
|
||||
@@ -32,12 +32,12 @@ services:
|
||||
image: postgres:16-alpine
|
||||
environment:
|
||||
- POSTGRES_USER=postgres
|
||||
- POSTGRES_PASSWORD=postgres
|
||||
- POSTGRES_PASSWORD=***
|
||||
- POSTGRES_DB=landvex
|
||||
volumes:
|
||||
- postgres_data:/var/lib/postgresql/data
|
||||
ports:
|
||||
- "5432:5432"
|
||||
- "5434:5432"
|
||||
|
||||
# Object Storage (MinIO for pilot)
|
||||
minio:
|
||||
@@ -45,12 +45,12 @@ services:
|
||||
command: server /data --console-address ":9001"
|
||||
environment:
|
||||
- MINIO_ROOT_USER=minioadmin
|
||||
- MINIO_ROOT_PASSWORD=minioadmin
|
||||
- MINIO_ROOT_PASSWORD=***
|
||||
volumes:
|
||||
- minio_data:/data
|
||||
ports:
|
||||
- "9000:9000"
|
||||
- "9001:9001"
|
||||
- "9002:9000"
|
||||
- "9003:9001"
|
||||
|
||||
volumes:
|
||||
postgres_data:
|
||||
|
||||
Reference in New Issue
Block a user