feat(validation): complete validation editor and master data modules
This commit is contained in:
parent
2b5c765e41
commit
f73a24df13
73 changed files with 10194 additions and 0 deletions
49
validation-suite/docker-compose.yml
Normal file
49
validation-suite/docker-compose.yml
Normal file
|
|
@ -0,0 +1,49 @@
|
|||
services:
|
||||
postgres:
|
||||
image: postgres:17
|
||||
container_name: postgres
|
||||
environment:
|
||||
POSTGRES_DB: validation_suite
|
||||
POSTGRES_USER: validation
|
||||
POSTGRES_PASSWORD: validation123
|
||||
volumes:
|
||||
- validation_suite_postgres:/var/lib/postgresql/data
|
||||
healthcheck:
|
||||
test: ["CMD-SHELL", "pg_isready -U validation -d validation_suite"]
|
||||
interval: 5s
|
||||
timeout: 5s
|
||||
retries: 20
|
||||
|
||||
mercury-api:
|
||||
build:
|
||||
context: ./backend/mercury
|
||||
container_name: mercury-api
|
||||
depends_on:
|
||||
postgres:
|
||||
condition: service_healthy
|
||||
environment:
|
||||
DATABASE_URL: postgresql+psycopg://validation:validation123@postgres:5432/validation_suite
|
||||
JWT_SECRET: validation-suite-local-jwt-secret
|
||||
ADMIN_EMAIL: admin@schubamed.de
|
||||
ADMIN_PASSWORD: ValidationSuite!2026
|
||||
ports:
|
||||
- "8000:8000"
|
||||
volumes:
|
||||
- mercury_uploads:/app/uploads
|
||||
- mercury_reports:/app/reports
|
||||
|
||||
atlas-web:
|
||||
build:
|
||||
context: ./frontend/atlas
|
||||
container_name: atlas-web
|
||||
depends_on:
|
||||
- mercury-api
|
||||
environment:
|
||||
NEXT_PUBLIC_API_BASE_URL: http://localhost:8000/api/v1
|
||||
ports:
|
||||
- "3000:3000"
|
||||
|
||||
volumes:
|
||||
validation_suite_postgres:
|
||||
mercury_uploads:
|
||||
mercury_reports:
|
||||
Loading…
Add table
Add a link
Reference in a new issue