chore(backend): Setup MikroORM
Simpele configuratie, geen integratie Succesvol commando's uitvoeren werkt
This commit is contained in:
parent
6d73120975
commit
2f280d3fb2
8 changed files with 1341 additions and 191 deletions
|
@ -1,15 +1,21 @@
|
|||
import express, {Express, Request, Response} from 'express';
|
||||
import initORM from './orm'
|
||||
|
||||
const app: Express = express();
|
||||
|
||||
const port: string | number = process.env.PORT || 3000;
|
||||
|
||||
// TODO Replace with Express routes
|
||||
app.get('/', (_, res: Response) => {
|
||||
res.json({
|
||||
message: 'Hello Dwengo!'
|
||||
});
|
||||
});
|
||||
|
||||
app.listen(port, () => {
|
||||
async function startServer() {
|
||||
const orm = await initORM();
|
||||
app.listen(port, () => {
|
||||
console.log(`Server is running at http://localhost:${port}`);
|
||||
})
|
||||
});
|
||||
}
|
||||
|
||||
startServer();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue