2021-02-16 21:55:50 +00:00
|
|
|
import express from 'express';
|
|
|
|
import * as http from 'http';
|
|
|
|
import * as bodyparser from 'body-parser';
|
2021-04-20 07:40:15 +00:00
|
|
|
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 as string, 10);
|
2021-02-16 21:55:50 +00:00
|
|
|
|
|
|
|
import {CommonRoutesConfig} from './src/common/common.routes.config';
|
2021-04-20 07:40:15 +00:00
|
|
|
// DHBW Service
|
2021-02-16 21:55:50 +00:00
|
|
|
import {GeneralInfoRoutes} from './src/models/dhbw-service/generalInfo.routes.config';
|
|
|
|
|
2021-04-20 07:40:15 +00:00
|
|
|
// Twitch Highlight Marker
|
|
|
|
import {AddHighlightRoutes} from './src/models/twitch-highlight-marker/addHighlight.routes.config';
|
|
|
|
|
2021-02-16 21:55:50 +00:00
|
|
|
const app: express.Application = express();
|
|
|
|
const server: http.Server = http.createServer(app);
|
|
|
|
const routes: Array<CommonRoutesConfig> = [];
|
|
|
|
|
|
|
|
// here we are adding middleware to parse all incoming requests as JSON
|
|
|
|
app.use(bodyparser.json());
|
|
|
|
|
|
|
|
// here we are adding the UserRoutes to our array,
|
|
|
|
// after sending the Express.js application object to have the routes added to our app!
|
|
|
|
routes.push(new GeneralInfoRoutes(app));
|
2021-04-20 07:40:15 +00:00
|
|
|
routes.push(new AddHighlightRoutes(app));
|
2021-02-16 21:55:50 +00:00
|
|
|
|
|
|
|
// this is a simple route to make sure everything is working properly
|
|
|
|
app.get('/', (req: express.Request, res: express.Response) => {
|
2021-03-21 18:04:11 +00:00
|
|
|
res.status(200).send('Welcome to the Pluto Development REST API V2!');
|
2021-02-16 21:55:50 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
server.listen(port, () => {
|
|
|
|
console.log('Server listening on Port 3000');
|
|
|
|
});
|