22 lines
489 B
TypeScript
22 lines
489 B
TypeScript
import express, { Express, Response } from 'express';
|
|
import initORM from './orm.js';
|
|
|
|
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!',
|
|
});
|
|
});
|
|
|
|
async function startServer() {
|
|
await initORM();
|
|
|
|
app.listen(port, () => {
|
|
console.log(`Server is running at http://localhost:${port}`);
|
|
});
|
|
}
|
|
|
|
startServer();
|