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]>
21 lines
409 B
Plaintext
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
|