chore: starter template

This commit is contained in:
e2e
2026-07-10 22:04:38 +02:00
commit 0e884ba4f8
157 changed files with 6462 additions and 0 deletions

6
db/sqlite-test-seed.sql Normal file
View File

@@ -0,0 +1,6 @@
-- Test-only seed: a minimal user row so getSession resolves against `user`.
-- This file is only used by the function-tests harness (never in the sandbox
-- or production).
INSERT INTO "user" (id, name, email, email_verified, created_at, updated_at)
VALUES ('user-001', 'Test User', 'test@example.com', 1, datetime('now'), datetime('now'))
ON CONFLICT (id) DO NOTHING;