feat/api-prox: change run scripts

This commit is contained in:
Kentai Radiquum 2025-09-07 16:27:47 +05:00
parent 022dc7b284
commit 78b9776899
Signed by: Radiquum
GPG key ID: 858E8EE696525EED
8 changed files with 159 additions and 15 deletions

9
api-prox/node.ts Normal file
View file

@ -0,0 +1,9 @@
import { serve } from '@hono/node-server'
import app from "./src/index.ts"
serve({
fetch: app.fetch,
port: 7001
}, (info) => {
console.log(`Server is running on http://localhost:${info.port}`)
})