feat(backend): Repositories toegevoegd, databank unit-testbaar gemaakt.

This commit is contained in:
Gerald Schmittinger 2025-02-24 01:13:20 +01:00
parent 2657e49ad6
commit 374de3b21a
15 changed files with 1672 additions and 45 deletions

View file

@ -1,5 +1,5 @@
import express, { Express, Response } from 'express';
import initORM from './orm.js';
import { initORM } from './orm.js';
const app: Express = express();
const port: string | number = process.env.PORT || 3000;
@ -19,4 +19,4 @@ async function startServer() {
});
}
startServer();
await startServer();