v0.2 Preview: Construction Plan.
CI / test (push) Failing after 1m31s

This commit is contained in:
2026-08-08 21:25:27 +08:00
parent b88d15698a
commit 1f98f7152d
822 changed files with 96959 additions and 8 deletions
+22
View File
@@ -0,0 +1,22 @@
.PHONY: install migrate seed run test check
install:
python3 -m venv .venv
.venv/bin/pip install -r requirements-dev.txt
migrate:
cd backend && ../.venv/bin/python manage.py migrate
seed:
cd backend && ../.venv/bin/python manage.py seed_initial_content
cd backend && ../.venv/bin/python manage.py seed_contests
run:
cd backend && ../.venv/bin/python manage.py runserver
test:
.venv/bin/python -m pytest -q
check:
cd backend && ../.venv/bin/python manage.py check
cd backend && ../.venv/bin/python manage.py makemigrations --check --dry-run