This repository has been archived on 2025-11-09. You can view files and clone it, but cannot push or open issues or pull requests.
Files
trafficcue-server/src/entry.ts
Jannik fae7308af8
All checks were successful
TrafficCue Server CI / check (push) Successful in 23s
style: run eslint and prettier
2025-08-30 10:31:03 +02:00

7 lines
91 B
TypeScript

import { initDb } from "./db";
import app from "./main";
await initDb();
Bun.serve(app);