Files
Jim BassoandClaude Opus 4.8 b42799df42
Build & Push Docker image / test (push) Successful in 40s
Build & Push Docker image / docker (push) Failing after 3m59s
Fix .gitignore excluding Data source folder
The ignore rule `src/WishNinja/Data/` accidentally excluded the EF Core
DbContext, entities, and migrations from the repo, breaking the CI build
(WishNinja.Data namespace not found). Narrow the rule to ignore only the
runtime artifacts (db/keys/uploads) and commit the missing source.

Co-Authored-By: Claude Opus 4.8 <[email protected]>
2026-06-11 14:11:34 -05:00

21 lines
409 B
Plaintext

## .NET build output
bin/
obj/
*.user
## Local runtime data (db, uploads, data-protection keys)
## NOTE: src/WishNinja/Data/ holds SOURCE (DbContext, entities, migrations) and must be
## committed — only ignore the runtime artifacts that land inside it during local dev.
/data/
*.db
*.db-shm
*.db-wal
src/WishNinja/smoke-data/
src/WishNinja/Data/uploads/
src/WishNinja/Data/keys/
## IDE
.vs/
.idea/
*.suo