feat(api): authentication

This commit is contained in:
2025-11-18 00:38:27 +02:00
parent 3f53c1e03f
commit baad24fecc
34 changed files with 910 additions and 234 deletions
+1 -1
View File
@@ -27,6 +27,7 @@ Conventions
- Prefer named exports in libraries. Avoid barrel files unless necessary.
- Use `workspace:*` for internal dependencies; do not hardcode versions.
- Keep changes minimal and localized; avoid cross-cutting refactors without discussion.
- When using tRPC in React, always compose `useQuery`/`useMutation` from TanStack with `trpc.*.queryOptions`/`mutationOptions` instead of calling `trpc.*.useQuery`/`useMutation` helpers directly (they are deprecated).
Tasks & Commands
- Install: `bun install` (run at repo root only).
@@ -67,4 +68,3 @@ Gotchas
Contact Points
- Architecture overview: `docs/architecture.md`.
- Forms handling patterns: `docs/forms-handling.md`.