-
Notifications
You must be signed in to change notification settings - Fork 0
/
server.js
33 lines (26 loc) · 950 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
const express = require('express');
const next = require('next');
const path = require('path');
const serveIndex = require('serve-index');
const cors = require('cors');
const dev = process.env.NODE_ENV !== 'production';
const app = next({ dev });
const handle = app.getRequestHandler();
app.prepare().then(() => {
const server = express();
server.use(cors({
origin: '*', // Allow all origins, you can restrict this as needed
methods: 'GET,HEAD,PUT,PATCH,POST,DELETE',
allowedHeaders: ['Content-Type', 'Authorization']
}));
server.use('/hydro-climate-eval/data',
express.static(path.join(__dirname, 'data'), { dotfiles: 'allow' }),
serveIndex(path.join(__dirname, 'data'), {'icons': false, 'hidden': true }));
server.all('*', (req, res) => {
return handle(req, res);
});
server.listen(8080, (err) => {
if (err) throw err;
console.log('> Ready on http://localhost:8080');
});
});