650 B
650 B
Task Completion Checklist
After completing a coding task, ensure:
- Migrations: If models were changed, run
python manage.py makemigrationsandpython manage.py migrate - Tests: Run
python manage.py testto verify nothing is broken - No linter/formatter configured: The project does not currently have a linter or formatter set up (no ruff, black, flake8, etc. in pyproject.toml)
- Static files: If templates/static files changed, run
python manage.py collectstatic - Strategy registration: If a new strategy was added, ensure it's registered in
strategies/implementations.pyandstrategies/impls/__init__.py