feat: add a server for querying notes

This commit is contained in:
Julien Calixte
2026-02-09 11:53:49 +01:00
parent d677ed24c3
commit 55699f0727
5 changed files with 10 additions and 112 deletions

View File

@@ -1,6 +1,9 @@
{
"tasks": {
"dev": "deno run --watch --allow-net --allow-read --allow-write main.ts",
"jetstream:prod": "deno run --allow-net --allow-read --allow-write --allow-env jetstream.ts",
"jetstream": "deno run --watch --allow-net --allow-read --allow-write --allow-env jetstream.ts",
"server": "deno run --watch --allow-net server.ts",
"server:prod": "deno run --allow-net server.ts",
"migrate": "deno run --allow-read --allow-write src/migrations/init.ts"
},
"imports": {