This commit is contained in:
jze9
2026-07-21 16:11:09 +05:00
commit 78862296c4
94 changed files with 6090 additions and 0 deletions

View File

@@ -0,0 +1,40 @@
services:
postgres:
ports:
- "5432:5432"
minio:
ports:
- "9000:9000"
- "9001:9001"
migrate:
build:
target: dev
volumes:
- ./backend:/app
- backend-venv:/app/.venv
backend:
build:
target: dev
volumes:
- ./backend:/app
- backend-venv:/app/.venv
ports:
- "8000:8000"
frontend:
build:
target: dev
volumes:
- ./frontend:/app
- frontend-node-modules:/app/node_modules
ports:
- "5173:5173"
environment:
CHOKIDAR_USEPOLLING: "true"
volumes:
backend-venv:
frontend-node-modules: