-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.js
32 lines (27 loc) · 940 Bytes
/
index.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
// launch express to serve files
const express = require('express');
const path = require('path');
const apiPassthru = require('./apipassthru');
const PORT = 3000;
const app = express();
app.set('view engine', 'ejs');
app.use('/resources/dev/flot', express.static('flot/source'));
app.use('/dist', express.static('dist'));
app.use('/resources', express.static('./html/resources'));
app.use('/images', express.static('./html/images'));
// pass through to api
app.use('/points', apiPassthru);
app.use('/gridpoints', apiPassthru);
app.use('/stations', apiPassthru);
app.use('/alerts', apiPassthru);
app.use('/products', apiPassthru);
// root document
app.use('/', (req, res, next) => {
if (req.originalUrl === '/') {
res.render(path.join(__dirname, './html/index'), { version: null, _apiUrl: `http://localhost:${PORT}/` });
} else {
next();
}
});
app.use('/*url', express.static(path.join(__dirname, './html')));
app.listen(PORT);