59 lines
483 B
Plaintext
59 lines
483 B
Plaintext
# Python
|
|
venv/
|
|
env/
|
|
ENV/
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
.Python
|
|
*.egg
|
|
*.egg-info/
|
|
dist/
|
|
build/
|
|
|
|
# Django
|
|
*.log
|
|
db.sqlite3
|
|
db.sqlite3-journal
|
|
media/
|
|
staticfiles/
|
|
|
|
# Environment variables
|
|
.env
|
|
.env.local
|
|
*.env
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
*.bak
|
|
|
|
# Testing
|
|
.coverage
|
|
htmlcov/
|
|
.pytest_cache/
|
|
.tox/
|
|
|
|
# MyPy
|
|
.mypy_cache/
|
|
.dmypy.json
|
|
dmypy.json
|
|
|
|
# Jupyter Notebook
|
|
.ipynb_checkpoints
|
|
|
|
# Temporary files
|
|
*.tmp
|
|
nul
|
|
|
|
# Personal notes
|
|
CLAUDE_NOTES.md
|