Commit Graph
7 Commits
Author SHA1 Message Date
Jim BassoandClaude Opus 4.8 830eb4f6dc Add TODO.md backlog and docs/DESIGN.md (original plan)
Build & Push Docker image / test (push) Successful in 45s
Build & Push Docker image / docker (push) Successful in 1m15s
Track the project backlog in-repo and preserve the original pre-implementation
design with a note on where the build diverged.

Co-Authored-By: Claude Opus 4.8 <[email protected]>
2026-06-11 15:50:18 -05:00
Jim BassoandClaude Opus 4.8 2ce89fa490 Fix SQLite crash: don't ORDER BY DateTimeOffset
Build & Push Docker image / test (push) Successful in 47s
Build & Push Docker image / docker (push) Successful in 1m19s
SQLite can't translate ORDER BY on DateTimeOffset columns, so loading the
wishlists/invites pages threw NotSupportedException. Order by the autoincrement
Id (same newest-first result) instead. Add a regression test that exercises the
owned/shared list queries against SQLite.

Co-Authored-By: Claude Opus 4.8 <[email protected]>
2026-06-11 15:36:28 -05:00
Jim BassoandClaude Opus 4.8 e323a2e882 Fix .dockerignore excluding Data source folder
Build & Push Docker image / test (push) Successful in 40s
Build & Push Docker image / docker (push) Successful in 1m22s
Same root cause as the .gitignore fix, but for the Docker build context:
`**/Data/` stripped the DbContext, entities and migrations out of the image
build, so `docker publish` failed (WishNinja.Data not found). Narrow it to
runtime artifacts only.

Co-Authored-By: Claude Opus 4.8 <[email protected]>
2026-06-11 14:30:03 -05:00
Jim BassoandClaude Opus 4.8 e7af8944a6 CI: authenticate to registry with a PAT secret
Build & Push Docker image / test (push) Successful in 39s
Build & Push Docker image / docker (push) Failing after 54s
The auto-provided GITEA_TOKEN was rejected by the container registry
(unauthorized). Use github.actor + a REGISTRY_TOKEN PAT secret for docker login.

Co-Authored-By: Claude Opus 4.8 <[email protected]>
2026-06-11 14:24:19 -05:00
Jim BassoandClaude Opus 4.8 b42799df42 Fix .gitignore excluding Data source folder
Build & Push Docker image / test (push) Successful in 40s
Build & Push Docker image / docker (push) Failing after 3m59s
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
Jim BassoandClaude Opus 4.8 48e13c4b57 CI: grant packages:write to the image-build job
Build & Push Docker image / test (push) Failing after 53s
Build & Push Docker image / docker (push) Has been skipped
The auto-provided GITEA_TOKEN needs explicit package-write permission to push
to the Gitea container registry.

Co-Authored-By: Claude Opus 4.8 <[email protected]>
2026-06-11 13:57:27 -05:00
Jim BassoandClaude Opus 4.8 7dee999759 Initial build: WishNinja self-hosted gift wishlist manager
Build & Push Docker image / test (push) Failing after 1m33s
Build & Push Docker image / docker (push) Has been skipped
ASP.NET Core Blazor (.NET 10) + EF Core/SQLite + Identity. Features:
- Wishlists & items with local image storage (upload, clipboard paste,
  or URL fetched and stored locally)
- Owner-hidden claims (enforced at the query layer) to preserve surprises
- Admin-invite-only onboarding with email-based password resets
- All state under /data; ships as a single Docker image

Includes Dockerfile, docker-compose, Gitea Actions CI (test + push image),
Unraid template, and xUnit tests (claim privacy, invite lifecycle, image validation).

Co-Authored-By: Claude Opus 4.8 <[email protected]>
2026-06-10 15:57:42 -05:00