66 lines
630 B
Plaintext
Executable File
66 lines
630 B
Plaintext
Executable File
test
|
|
|
|
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*.pyo
|
|
*.pyd
|
|
*.so
|
|
|
|
# Virtual environments
|
|
env/
|
|
venv/
|
|
ENV/
|
|
*.egg-info/
|
|
.eggs/
|
|
|
|
# Django migrations
|
|
**/migrations/
|
|
!*/migrations/__init__.py
|
|
|
|
# SQLite database
|
|
*.sqlite3
|
|
*.db
|
|
|
|
# IDEs and editors
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*~
|
|
|
|
# OS files
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Static/media cache (optional, uncomment if needed)
|
|
# staticfiles/
|
|
# media/
|
|
|
|
# Logs
|
|
*.log
|
|
|
|
# Coverage & testing
|
|
htmlcov/
|
|
coverage.xml
|
|
.tox/
|
|
.nox/
|
|
.pytest_cache/
|
|
|
|
# dotenv or secrets
|
|
.env
|
|
.env.*
|
|
|
|
# Redis dump or cache (if using)
|
|
*.rdb
|
|
|
|
# Node (if using JS build tools)
|
|
node_modules/
|
|
|
|
|
|
|
|
# Docker
|
|
*.pid
|
|
*.tar
|
|
*.sock
|
|
docker-compose.override.yml
|