mirror of
https://github.com/documenso/documenso.git
synced 2025-11-10 04:22:32 +10:00
8 lines
166 B
TypeScript
8 lines
166 B
TypeScript
import { serve } from '@hono/node-server';
|
|
|
|
import app from './app';
|
|
|
|
serve(app, (info) => {
|
|
console.log(`Server is running on http://localhost:${info.port}`);
|
|
});
|