Skip to content
This repository was archived by the owner on Jun 19, 2026. It is now read-only.

Commit 1bb2cd9

Browse files
committed
docs: added OpenAPI with examples and enabled backend hot-reload
1 parent 20cb0ce commit 1bb2cd9

5 files changed

Lines changed: 501 additions & 1 deletion

File tree

docker-compose.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,11 @@ services:
1818
- .env
1919
depends_on: [postgres, redis]
2020
ports: ["8000:8000"]
21-
volumes: ["./packages/backend/tests:/app/tests:ro"]
21+
volumes:
22+
- ./packages/backend/app:/app/app
23+
- ./packages/backend/wsgi.py:/app/wsgi.py
24+
- ./packages/backend/tests:/app/tests:ro
25+
command: gunicorn --reload --workers=2 --threads=4 --bind 0.0.0.0:8000 wsgi:app
2226

2327
frontend:
2428
build: ./app

0 commit comments

Comments
 (0)