feat: init db

This commit is contained in:
Julien Calixte
2026-02-08 23:26:52 +01:00
parent ab1be0efb6
commit 2312240d10
9 changed files with 109 additions and 270 deletions

9
deno.json Normal file
View File

@@ -0,0 +1,9 @@
{
"tasks": {
"dev": "deno run --watch --allow-net --allow-read --allow-write main.ts",
"migrate": "deno run src/migrations/init.ts"
},
"imports": {
"@std/assert": "jsr:@std/assert@1"
}
}