plutoapi-v2/app.ts
Patrick Müller 7df8b5ad8e
All checks were successful
Jenkins Production Deployment
API-13: Adding PartyPlaner main endpoint (#2)
- Also did some refactoring for cleaner code

Co-authored-by: Patrick Müller <patrick@mueller-patrick.tech>
Reviewed-on: #2
Co-authored-by: Patrick Müller <patrick@plutodev.de>
Co-committed-by: Patrick Müller <patrick@plutodev.de>
2021-08-18 12:02:59 +00:00

39 lines
1.2 KiB
TypeScript

import express from 'express';
import * as http from 'http';
import * as bodyparser from 'body-parser';
import * as dotenv from 'dotenv';
dotenv.config();
if (!process.env.PORT) {
console.log('No port');
process.exit(1);
}
const port: number = parseInt(process.env.PORT, 10);
// Router imports
import {partyPlanerRouter} from "./src/models/partyplaner/PartyPlaner.router";
import {highlightMarkerRouter} from "./src/models/twitch-highlight-marker/HighlightMarker.router";
import { dhbwServiceRouter } from './src/models/dhbw-service/DHBWServiceRouter';
const app: express.Application = express();
const server: http.Server = http.createServer(app);
// here we are adding middleware to parse all incoming requests as JSON
app.use(bodyparser.json());
// Add routers
app.use('/dhbw-service', dhbwServiceRouter);
app.use('/twitch-highlight-marker', highlightMarkerRouter);
app.use('/partyplaner', partyPlanerRouter);
// 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 V2!');
});
server.listen(port, () => {
console.log('Server listening on Port ' + port);
});