fix(backend): rendering issue

This commit is contained in:
2025-01-19 21:11:38 +01:00
parent 5fac6de05a
commit 463141981b
7 changed files with 635 additions and 16 deletions

13
compose.yml Normal file
View File

@@ -0,0 +1,13 @@
services:
app:
build:
context: .
dockerfile: Dockerfile
volumes:
- .:/app # Mount the local directory to /app in the container
working_dir: /app # Set the working directory inside the container to /app
command: run --env-file -A --watch=static/,routes/ dev.ts # Custom start command
ports:
- "8000:8000" # Expose the container port
environment:
- DATA_DIR=/app/data # Set the environment variable inside the container