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

27
docker-compose.dev.yml Normal file
View File

@@ -0,0 +1,27 @@
services:
backend:
build:
context: ./backend
dockerfile: Dockerfile.dev
env_file:
- ./.env
environment:
APP_HOST: 0.0.0.0
APP_PORT: 8105
APP_DEBUG: "true"
CORS_ORIGINS: http://localhost:5173,http://127.0.0.1:5173,http://localhost:4173,http://127.0.0.1:4173
volumes:
- ./data:/app/data
ports:
- "8105:8105"
frontend:
build:
context: ./frontend
dockerfile: Dockerfile.dev
environment:
VITE_DEMO_MODE: "false"
ports:
- "5173:5173"
depends_on:
- backend