WIP: local changes

This commit is contained in:
2026-04-08 15:29:52 +03:00
parent 07842540ba
commit 81ba6cd076
56 changed files with 2015 additions and 0 deletions
+33
View File
@@ -0,0 +1,33 @@
version: "3.9"
services:
backend:
build:
context: ./backend
dockerfile: Dockerfile
container_name: sg_backend
volumes:
- ./backend:/app
- sqlite_data:/app/data
environment:
- DJANGO_SETTINGS_MODULE=config.settings
ports:
- "8000:8000"
restart: unless-stopped
frontend:
build:
context: ./frontend
dockerfile: Dockerfile
container_name: sg_frontend
volumes:
- ./frontend:/app
- /app/node_modules
ports:
- "5173:5173"
depends_on:
- backend
restart: unless-stopped
volumes:
sqlite_data: