register and sign in pages

This commit is contained in:
2026-09-22 00:50:30 +05:00
parent f313867653
commit 78d04f75d1
96 changed files with 6383 additions and 109 deletions
+26
View File
@@ -0,0 +1,26 @@
default:
just --list
# --- dev ---
run:
python manage.py runserver 0.0.0.0:8000
worker:
python manage.py procrastinate worker
shell:
python manage.py shell
# --- database ---
migrate:
python manage.py migrate
migrations:
python manage.py makemigrations
superuser:
python manage.py createsuperuser
# --- quality ---
test:
python manage.py test --settings=apibase.settings_test
lint:
ruff check .
fmt:
ruff format .