Files
documenso/apps/remix/server/main.ts
Mythie 866b036484 wip
2025-01-02 15:33:37 +11:00

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}`);
});