55 lines
561 B
Plaintext
55 lines
561 B
Plaintext
# Python bytecode and cache
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
|
|
# Virtual environments
|
|
venv/
|
|
.venv/
|
|
env/
|
|
.env-env/
|
|
ENV/
|
|
|
|
# Django local settings & secrets
|
|
*.env
|
|
.env
|
|
db.sqlite3
|
|
db.sqlite3-journal
|
|
local_settings.py
|
|
|
|
# Django media & static deployment folders
|
|
media/
|
|
staticfiles/
|
|
static-cdn/
|
|
|
|
# Logs
|
|
*.log
|
|
logs/
|
|
|
|
# Testing & coverage
|
|
htmlcov/
|
|
.tox/
|
|
.coverage
|
|
.coverage.*
|
|
.cache
|
|
nosetests.xml
|
|
coverage.xml
|
|
*.cover
|
|
.hypothesis/
|
|
.pytest_cache/
|
|
|
|
# OS-specific files
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# IDEs & Editors
|
|
.vscode/
|
|
.idea/
|
|
*.suo
|
|
*.ntvs*
|
|
*.njsproj
|
|
*.sln
|
|
*.swp
|
|
|
|
#temp
|
|
temp/ |