feat(backend): bootstrap express app with error handling

This commit is contained in:
2026-05-20 20:36:55 +02:00
parent 59261b3bab
commit d13af79940
7 changed files with 5070 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
import { createApp } from './app.js';
const PORT = Number(process.env.PORT ?? 3000);
const app = createApp();
app.listen(PORT, () => {
console.log(`Backend listening on http://localhost:${PORT}`);
});