chore: kanban template

This commit is contained in:
e2e
2026-06-22 00:08:38 +02:00
commit 7c2f7d0841
209 changed files with 215578 additions and 0 deletions

8
db/sqlite-seed.sql Normal file
View File

@@ -0,0 +1,8 @@
-- Demo seed data. Runs after migrations in local dev only (never in production).
-- All statements must be idempotent (INSERT OR IGNORE / ON CONFLICT DO NOTHING).
INSERT INTO kanban_card (card_id, title, description, status, priority, position)
VALUES
('card-seed-1', 'Wire up local sandbox', 'Boot the project and verify the preview stack.', 'doing', 'high', 1),
('card-seed-2', 'Polish board interactions', 'Tighten drag/drop and empty-state behavior.', 'todo', 'medium', 1)
ON CONFLICT DO NOTHING;