30 lines
453 B
Plaintext
30 lines
453 B
Plaintext
# Append these to the project's .gitignore (create one if missing).
|
|
# CRITICAL: secrets and the live database must never be committed.
|
|
|
|
# Secrets / env
|
|
.env
|
|
*.env
|
|
!.env.example
|
|
|
|
# Local database + uploads (live data lives on the NAS volume)
|
|
data/
|
|
*.sqlite
|
|
*.sqlite3
|
|
*.db
|
|
*.db-journal
|
|
|
|
# Python
|
|
__pycache__/
|
|
*.pyc
|
|
.venv/
|
|
venv/
|
|
env/
|
|
|
|
# OS / editor
|
|
.DS_Store
|
|
.idea/
|
|
.vscode/
|
|
|
|
# This handoff instruction file — don't ship it into the repo
|
|
bonnasclaude.md
|