36 lines
421 B
Plaintext
36 lines
421 B
Plaintext
# Local configuration and secrets
|
|
.env
|
|
.env.*
|
|
!.env.example
|
|
config.env
|
|
|
|
# Python caches and virtual environments
|
|
__pycache__/
|
|
*.py[cod]
|
|
.pytest_cache/
|
|
.mypy_cache/
|
|
.venv/
|
|
venv/
|
|
|
|
# Logs, databases, and runtime data
|
|
*.log
|
|
*.db
|
|
deploy/data/
|
|
logs/
|
|
uploads/
|
|
|
|
# Local recordings and generated media
|
|
*.wav
|
|
*.mp3
|
|
*.flac
|
|
|
|
# Build and editor artifacts
|
|
node_modules/
|
|
dist/
|
|
build/
|
|
*.egg-info/
|
|
.idea/
|
|
.vscode/
|
|
.DS_Store
|
|
*** End Patch
|