monorepo/apps/api/src/run.ts

15 lines
261 B
TypeScript
Raw Normal View History

2025-05-10 17:02:57 +08:00
import { serve } from "@hono/node-server";
2025-02-09 10:39:10 +08:00
2025-05-10 17:02:57 +08:00
import { app } from "./server/main";
2025-02-09 10:39:10 +08:00
serve(
2025-05-10 17:02:57 +08:00
{
fetch: app.fetch,
2025-06-05 20:38:10 +08:00
port: 3100,
2025-05-10 17:02:57 +08:00
hostname: "localhost",
},
2025-02-09 10:39:10 +08:00
2025-05-10 17:02:57 +08:00
async () => {
2025-06-05 20:38:10 +08:00
console.log("Server started on http://localhost:3100/api/");
2025-05-10 17:02:57 +08:00
},
2025-02-09 10:39:10 +08:00
).listen();