This commit is contained in:
Ilnar
2026-03-05 06:55:42 +03:00
commit 36a7d530c1
50 changed files with 3091 additions and 0 deletions

15
backend_django/README.md Normal file
View File

@@ -0,0 +1,15 @@
# Django Backend
```bash
python -m venv .venv
pip install -r requirements.txt
cp .env.example .env
python manage.py migrate
python manage.py runserver 0.0.0.0:8000
```
Swagger: http://localhost:8000/api/docs/
Docker: build from root with `docker compose up --build`