Broaden gitignore to cover *.bak under seed/data/ (followup to 5f16855)

Commit 5f16855's message claimed it broadened .gitignore alongside the
git rm --cached, but the .gitignore edit was left unstaged. This commit
actually applies the change so future *.db.bak / *.bak files dropped
into start9/*/seed/data/ stay out of version control.
This commit is contained in:
Keysat
2026-05-09 13:20:25 -05:00
parent 32b855f25b
commit a5df05c3ce
+7 -3
View File
@@ -40,7 +40,11 @@ proof-of-work/prisma/dev.db
proof-of-work/prisma/data/*.db
!proof-of-work/prisma/data/.keep
# Live data snapshot pulled off the running 0.3.5 host — contains real
# workout history. Stays on disk so the maintainer can rebuild the seeded
# cutover image, but MUST never be committed to a public repo.
# Live data snapshot pulled off the running host — contains real
# workout history. Stays on disk so the maintainer can rebuild the
# cutover image, but MUST never be committed to a public repo. Also
# matches *.db.bak (refresh_seed and manual cutover both produce
# .bak rollback files alongside the live snapshot).
start9/*/seed/data/*.db
start9/*/seed/data/*.db.bak
start9/*/seed/data/*.bak