37 lines
354 B
Plaintext
37 lines
354 B
Plaintext
# Python
|
|
venv/
|
|
__pycache__/
|
|
*.pyc
|
|
*.pyo
|
|
*.pyd
|
|
.Python
|
|
*.so
|
|
.env
|
|
.venv
|
|
|
|
# Runtime data and databases (exclude source code)
|
|
/data/
|
|
logs/
|
|
*.log
|
|
*.db
|
|
*.sqlite
|
|
*.sqlite3
|
|
|
|
# IDE and editors
|
|
.DS_Store
|
|
.claude/
|
|
.vscode/
|
|
.idea/
|
|
|
|
# Docker
|
|
.dockerignore
|
|
|
|
# Configuration (if contains sensitive info)
|
|
config/local_*
|
|
config/prod_*
|
|
|
|
# Temporary files
|
|
tmp/
|
|
temp/
|
|
*.tmp
|