-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.js
51 lines (41 loc) · 1.27 KB
/
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
41
42
43
44
45
46
47
48
49
50
51
const express = require('express');
const cors = require('cors');
// environmental variables
require('dotenv').config();
const authRoutes = require('./routes/authRoutes');
const adminRoutes = require('./routes/adminRoutes');
const personalRoutes = require('./routes/personalRoutes');
const orgRoutes = require('./routes/orgRoutes');
const stationRoutes = require('./routes/stationRoutes');
const mobileauthroutes = require('./routes/mobile/auth');
const makeApp = () => {
// express app
const app = express();
app.use(
cors({
exposedHeaders: ["x-refresh-token", "x-access-token"],
})
);
app.use(express.json());
// middleware & static files
app.use(express.urlencoded({ extended: true }));
// set static file path for productioin build
if (process.env.NODE_ENV === 'production') {
app.use(express.static('client/build'));
}
app.use((req, res, next) => {
res.locals.path = req.path;
next();
});
//routes
app.use('/auth', authRoutes);
app.use('/admin', adminRoutes);
app.use('/personal', personalRoutes);
app.use('/org', orgRoutes);
app.use('/station', stationRoutes);
app.use("/mobileauth", mobileauthroutes);
return app;
}
module.exports = {
makeApp
}