summaryrefslogtreecommitdiff
path: root/src/index.ts
diff options
context:
space:
mode:
authorMathias Magnusson <mathias@magnusson.space>2025-08-14 15:11:23 +0200
committerMathias Magnusson <mathias@magnusson.space>2025-08-14 18:44:19 +0200
commit923c7c6b1a6549a6c5012713a22d5cf6e478f994 (patch)
tree1f50b20f53745f348ea7215a0ab0dd90a45a8863 /src/index.ts
parent59f99c59d577ac4c640bee676856969ec035bcb6 (diff)
downloaduneven-923c7c6b1a6549a6c5012713a22d5cf6e478f994.tar.gz
Set up htmx & drizzle+libsql
Diffstat (limited to 'src/index.ts')
-rw-r--r--src/index.ts15
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}`)
-})