- Split requirements.txt into base/dev/production - Update Dockerfiles to use requirements/production.txt - Create .dockerignore to reduce build context - Add conftest.py with user fixtures - Add tests: accounts models (9), blog views (4), contact views (1) - Add sentry-sdk[django] with conditional init via SENTRY_DSN
16 lines
159 B
Text
16 lines
159 B
Text
.git
|
|
.gitignore
|
|
.github
|
|
node_modules
|
|
__pycache__
|
|
*.pyc
|
|
*.pyo
|
|
media/
|
|
*.log
|
|
.env
|
|
.env.*
|
|
htmlcov/
|
|
.pytest_cache/
|
|
.mypy_cache/
|
|
.ruff_cache/
|
|
frontend/node_modules/
|