Files
botfights/server/src/index.ts
T

9 lines
240 B
TypeScript
Raw Normal View History

import { serve } from '@hono/node-server'
import { app } from './app.js'
const port = Number(process.env.PORT) || 9100
serve({ fetch: app.fetch, port }, () => {
console.log(`[botfights] server listening on http://localhost:${port}`)
})