Split native Periscope (periscope/src) from inherited PinScope (periscope/dependency).

Keep validate.py and the finding engine as-is. AGPL LICENSE stays at the repo root.
Docker overlays dependency then src. Do not delete the inherited tree.
This commit is contained in:
2026-09-20 14:31:42 +02:00
parent 0a75e5971a
commit c362ef8a56
384 changed files with 742 additions and 433 deletions
+4 -4
View File
@@ -10,7 +10,7 @@ services:
backend:
build:
context: .
dockerfile: backend/Dockerfile
dockerfile: periscope/src/backend/Dockerfile
container_name: periscope-backend
restart: unless-stopped
@@ -25,7 +25,7 @@ services:
volumes:
- ./data:/app/data
- ./taxonomy:/app/taxonomy
- ./periscope/dependency/taxonomy:/app/taxonomy
ports:
- "8080:8080"
@@ -38,8 +38,8 @@ services:
frontend:
build:
context: ./frontend
dockerfile: dockerfile
context: .
dockerfile: periscope/src/frontend/dockerfile
args:
NEXT_PUBLIC_API_URL: ${NEXT_PUBLIC_API_URL:-http://localhost:8080}
NEXT_PUBLIC_AUTH_MODE: ${NEXT_PUBLIC_AUTH_MODE:-}