54 lines
520 B
Plaintext
54 lines
520 B
Plaintext
# Dependencies
|
|
__pycache__/
|
|
*.py[cod]
|
|
*.egg-info/
|
|
dist/
|
|
build/
|
|
.eggs/
|
|
*.so
|
|
*.spec
|
|
|
|
# Virtual environments
|
|
venv/
|
|
.venv/
|
|
env/
|
|
.env/
|
|
|
|
# Environment variables
|
|
.env
|
|
.env.local
|
|
.env.production
|
|
|
|
# IDE
|
|
.idea/
|
|
.vscode/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Project config (contains secrets, PINs, tokens)
|
|
.pi/
|
|
|
|
# Build artifacts
|
|
*.exe
|
|
*.pyc
|
|
*.pyo
|
|
|
|
# Linter caches
|
|
.ruff_cache/
|
|
|
|
# Android
|
|
android/.gradle/
|
|
android/build/
|
|
android/app/build/
|
|
*.apk
|
|
*.aab
|
|
android/local.properties
|
|
|
|
# Handoff docs (internal tracking)
|
|
HANDOFF.md
|