37 lines
387 B
Plaintext
37 lines
387 B
Plaintext
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*.pyo
|
|
|
|
# Code formatter
|
|
.ruff_cache/
|
|
|
|
# Environment
|
|
*.env
|
|
.env
|
|
*.venv
|
|
.venv
|
|
|
|
# Django
|
|
db.sqlite3
|
|
media/
|
|
staticfiles/
|
|
|
|
# Migrations (except __init__.py)
|
|
**/migrations/*.py
|
|
**/migrations/*.pyc
|
|
!**/migrations/__init__.py
|
|
|
|
# Logs
|
|
*.log
|
|
logs/
|
|
|
|
# IDE / Editor
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
|
|
# test coverage report
|
|
.coverage
|
|
htmlcov/
|