initial commit

This commit is contained in:
gulimabr
2026-01-28 15:34:58 -03:00
commit 08825bf817
23 changed files with 5251 additions and 0 deletions

24
docker-compose.yml Normal file
View File

@@ -0,0 +1,24 @@
services:
backend:
build: ./backend
ports:
- "8000:8000"
volumes:
- ./backend:/app
- ./data:/app/data
environment:
- FRONTEND_ORIGIN=http://localhost:5173
command: poetry run uvicorn app.main:app --host 0.0.0.0 --port 8000 --reload
frontend:
build: ./frontend
ports:
- "5173:5173"
volumes:
- ./frontend:/app
- /app/node_modules
environment:
- VITE_API_BASE_URL=http://localhost:8000
command: pnpm dev --host 0.0.0.0 --port 5173
depends_on:
- backend