初始化

This commit is contained in:
2026-04-02 23:40:04 +08:00
commit 381ea7085d
107 changed files with 11858 additions and 0 deletions
+32
View File
@@ -0,0 +1,32 @@
version: '3.8'
services:
backend:
build: ./backend
ports:
- "8000:8000"
env_file:
- ./backend/.env
volumes:
- ./backend/logs:/app/logs
restart: unless-stopped
celery-worker:
build: ./backend
command: celery -A app.core.celery_app worker --loglevel=info
env_file:
- ./backend/.env
restart: unless-stopped
celery-beat:
build: ./backend
command: celery -A app.core.celery_app beat --loglevel=info
env_file:
- ./backend/.env
restart: unless-stopped
frontend:
build: ./frontend
ports:
- "5173:5173"
restart: unless-stopped