feat(desktop): scaffold desktop app

Co-authored-by: Maze <mazeincoding@users.noreply.github.com>
This commit is contained in:
Maze Winther
2026-07-10 19:57:05 +00:00
committed by Cursor Agent
co-authored by Maze
parent 7ae51862b6
commit b59255cca8
14 changed files with 142 additions and 13 deletions
+1 -1
View File
@@ -7,7 +7,7 @@ tasks:
dev:
command: 'bun run dev'
options:
runInCI: false # dev server skipped in CI, never cached
runInCI: false # dev server: skipped in CI, never cached
build:
command: 'bun run build'
+1 -1
View File
@@ -11,5 +11,5 @@ export default new Elysia({ adapter: CloudflareAdapter })
body: t.Object({ message: t.String() }),
}
)
// .compile() is required it triggers AoT compilation at startup
// .compile() is required, it triggers AoT compilation at startup
.compile();