added repo

This commit is contained in:
2026-03-03 14:25:43 +00:00
commit 4328ada595
15 changed files with 2118 additions and 0 deletions

10
scripts/seed.ts Normal file
View File

@@ -0,0 +1,10 @@
import { getConfig } from "../src/config";
import { reseedDatabase } from "../src/database";
const config = getConfig();
const db = reseedDatabase(config.dbPath);
db.close();
console.info("mock-task-api:seeded", {
dbPath: config.dbPath,
});