# Python
__pycache__/
*.py[cod]
*$py.class
*.so
*.egg
*.egg-info/
.eggs/
*.manifest
*.spec

# Virtual environments
venv/
ENV/
env/
.venv/
venv.bak/
pip-wheel-metadata/

# Distribution / packaging
build/
dist/
*.egg-info/
.eggs/

# Installer logs
pip-log.txt
pip-delete-this-directory.txt

# Unit test / coverage reports
htmlcov/
.tox/
.nox/
.coverage
.coverage.*
.cache
.pytest_cache/
nosetests.xml
coverage.xml

# Django stuff:
*.log
local_settings.py
db.sqlite3
db.sqlite3-journal
media/
/staticfiles/


# Sentry
sentry_sdk.db

# dotenv
.env

# Celery
celerybeat-schedule
celerybeat.pid

# PyCharm
.idea/
*.iml

# VS Code
.vscode/

# Editors
*.swp
*~
.project
.metadata
.cache
*.sublime-project
*.sublime-workspace

# macOS
.DS_Store

# Windows
Thumbs.db
ehthumbs.db
Desktop.ini

# Node (if you have frontend assets)
node_modules/
npm-debug.log*
yarn-debug.log*
yarn-error.log*

# Environment and secrets
*.pem
*.key
*.crt

# Byte-compiled / optimized / C extensions
*.pyc
*.pyo
*.pyd

# Mypy
.mypy_cache/

# Pyre
.pyre/

# Coverage reports
coverage/

# Ignore build artifacts from IDEs/CI
*.log
*.tmp

# Docker
mysql/

# tailwind and static files
theme/static_src/node_modules/
theme/static/css/dist/
staticfiles/

# End of file