-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.js
40 lines (30 loc) · 984 Bytes
/
app.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
require('dotenv').config();
const express = require('express');
const app = express();
app.use(express.json());
if (process.env.BUILT_IN_GZIP)
app.use(require('compression')());
const port = process.env.PORT || 3000;
if (process.env.NODE_ENV === 'development') {
const swaggerJSDoc = require('swagger-jsdoc');
const swaggerUi = require('swagger-ui-express');
const swaggerDefinition = {
openapi: '3.0.0',
info: {
title: 'Sessions UCP'
},
host: 'localhost:3000',
basePath: '/'
};
const options = {
swaggerDefinition,
apis: ['./docs/swagger/**/*.yaml'],
};
const swaggerSpec = swaggerJSDoc(options);
app.use('/docs', swaggerUi.serve, swaggerUi.setup(swaggerSpec));
}
require('./routes')(app);
require('./jobs')();
app.listen(port, () => {
if (process.env.NODE_ENV === 'production') console.log('App started at port ' + port);
});