Merge remote-tracking branch 'origin/master'
All checks were successful
Jenkins Production Deployment

This commit is contained in:
Patrick Müller 2021-03-21 20:41:36 +01:00
commit 415b4ba640

2
app.ts
View File

@ -19,7 +19,7 @@ routes.push(new GeneralInfoRoutes(app));
// this is a simple route to make sure everything is working properly
app.get('/', (req: express.Request, res: express.Response) => {
res.status(200).send('Welcome to the Pluto Development REST API!');
res.status(200).send('Welcome to the Pluto Development REST API V2!');
});
server.listen(port, () => {