diff options
author | Mathias Magnusson <mathias@magnusson.space> | 2025-08-14 15:11:23 +0200 |
---|---|---|
committer | Mathias Magnusson <mathias@magnusson.space> | 2025-08-14 18:44:19 +0200 |
commit | 923c7c6b1a6549a6c5012713a22d5cf6e478f994 (patch) | |
tree | 1f50b20f53745f348ea7215a0ab0dd90a45a8863 /src/index.ts | |
parent | 59f99c59d577ac4c640bee676856969ec035bcb6 (diff) | |
download | uneven-923c7c6b1a6549a6c5012713a22d5cf6e478f994.tar.gz |
Set up htmx & drizzle+libsql
Diffstat (limited to 'src/index.ts')
-rw-r--r-- | src/index.ts | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/src/index.ts b/src/index.ts deleted file mode 100644 index bc1cc19..0000000 --- a/src/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -import { serve } from '@hono/node-server' -import { Hono } from 'hono' - -const app = new Hono() - -app.get('/', (c) => { - return c.text('Hello Hono!') -}) - -serve({ - fetch: app.fetch, - port: 3000 -}, (info) => { - console.log(`Server is running on http://localhost:${info.port}`) -}) |