Initial commit

This commit is contained in:
Djuri 2025-05-18 23:54:04 +02:00
commit c5111cb551
Signed by: djuri
GPG key ID: 61B9B2DDE5AA3AC1
20 changed files with 1764 additions and 0 deletions

14
docker-compose.yaml Normal file
View file

@ -0,0 +1,14 @@
version: '3.8'
services:
app:
build:
context: .
dockerfile: Dockerfile
ports:
- "${PORT}:${PORT}"
environment:
- PORT=${PORT}
volumes:
- ./static:/app/static
restart: unless-stopped