-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathserver.js
35 lines (28 loc) · 806 Bytes
/
server.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
const express = require('express');
const path = require('path');
const nunjucks = require('nunjucks');
nunjucks.configure('views', { noCache: true });
const app = express();
app.set('view engine', 'html');
app.engine('html', nunjucks.render);
app.use('/', express.static(path.join(__dirname, 'node_modules')));
app.use('/', express.static(path.join(__dirname, 'public')));
app.get('/', (req, res, next) => {
res.render('index');
});
let config = process.env;
try {
config = require('./config.json');
}
catch (ex) {
console.log(ex);
}
app.use((req, res, next) => {
res.locals.GOOGLE_MAPS_API = config.GOOGLE_MAPS_API;
res.locals.OAUTH_TOKEN = config.OAUTH_TOKEN;
next();
});
const port = process.env.PORT || 3000;
app.listen(port, () => {
console.log(`listening on port ${port}`);
});