WIP: Working on player

This commit is contained in:
Mistral Vibe
2026-04-08 15:10:52 +02:00
parent d654ad5987
commit b5c84ec58c
95 changed files with 453 additions and 193 deletions

View File

@@ -24,9 +24,7 @@ services:
api:
build:
context: ./api
target: development
volumes:
- ./api/src:/app/src
target: production
environment:
DATABASE_URL: postgresql+asyncpg://${POSTGRES_USER:-rh_user}:${POSTGRES_PASSWORD:-default_secure_password}@db:5432/${POSTGRES_DB:-rehearsalhub}
NEXTCLOUD_URL: ${NEXTCLOUD_URL:-https://cloud.example.com}
@@ -35,7 +33,7 @@ services:
REDIS_URL: redis://redis:6379/0
SECRET_KEY: ${SECRET_KEY:-replace_me_with_32_byte_hex_default}
INTERNAL_SECRET: ${INTERNAL_SECRET:-replace_me_with_32_byte_hex_default}
DOMAIN: ${DOMAIN:-localhost}
DOMAIN: localhost
ports:
- "8000:8000"
networks:
@@ -47,13 +45,11 @@ services:
web:
build:
context: ./web
target: development
volumes:
- ./web/src:/app/src
target: production
environment:
API_URL: http://api:8000
ports:
- "3000:3000"
- "3001:80"
networks:
- rh_net
depends_on: