first commit

This commit is contained in:
Mateusz Gruszczyński
2026-03-23 15:56:18 +01:00
commit c5cc2efbac
106 changed files with 10254 additions and 0 deletions

25
docker-compose.yml Normal file
View File

@@ -0,0 +1,25 @@
services:
backend:
build:
context: ./backend
dockerfile: Dockerfile
env_file:
- ./.env
environment:
APP_HOST: 0.0.0.0
APP_PORT: 8105
volumes:
- ./data:/app/data
ports:
- "8105:8105"
restart: unless-stopped
frontend:
build:
context: ./frontend
dockerfile: Dockerfile
ports:
- "8080:80"
restart: unless-stopped
depends_on:
- backend