69 lines
560 B
Plaintext
69 lines
560 B
Plaintext
|
|
# Git
|
||
|
|
.git
|
||
|
|
.gitignore
|
||
|
|
|
||
|
|
# Python
|
||
|
|
__pycache__
|
||
|
|
*.py[cod]
|
||
|
|
*$py.class
|
||
|
|
*.so
|
||
|
|
.Python
|
||
|
|
.venv
|
||
|
|
venv
|
||
|
|
env
|
||
|
|
.eggs
|
||
|
|
*.egg-info
|
||
|
|
.installed.cfg
|
||
|
|
*.egg
|
||
|
|
|
||
|
|
# IDE
|
||
|
|
.vscode
|
||
|
|
.idea
|
||
|
|
*.swp
|
||
|
|
*.swo
|
||
|
|
*~
|
||
|
|
|
||
|
|
# Testing
|
||
|
|
.pytest_cache
|
||
|
|
.coverage
|
||
|
|
htmlcov
|
||
|
|
.tox
|
||
|
|
.nox
|
||
|
|
|
||
|
|
# Mypy
|
||
|
|
.mypy_cache
|
||
|
|
|
||
|
|
# Documentation
|
||
|
|
docs/_build
|
||
|
|
*.md
|
||
|
|
!README.md
|
||
|
|
|
||
|
|
# Local config
|
||
|
|
.env
|
||
|
|
.env.local
|
||
|
|
config.local.json5
|
||
|
|
secrets/
|
||
|
|
|
||
|
|
# Logs and data
|
||
|
|
*.log
|
||
|
|
logs/
|
||
|
|
*.db
|
||
|
|
*.sqlite
|
||
|
|
*.sqlite3
|
||
|
|
data/
|
||
|
|
|
||
|
|
# PoC files
|
||
|
|
poc/
|
||
|
|
PoC*.md
|
||
|
|
|
||
|
|
# Development files
|
||
|
|
*.tmp
|
||
|
|
tmp/
|
||
|
|
temp/
|
||
|
|
|
||
|
|
# Tests (optional - include if you want tests in image)
|
||
|
|
# tests/
|
||
|
|
|
||
|
|
# Claude config
|
||
|
|
.claude/
|