9 lines
196 B
TypeScript
9 lines
196 B
TypeScript
import { createApp } from "./app.js";
|
|
|
|
const PORT = Number(process.env["PORT"] ?? 3000);
|
|
|
|
const app = createApp();
|
|
|
|
app.listen(PORT, () => {
|
|
console.log(`Server listening on port ${PORT}`);
|
|
});
|