-
Notifications
You must be signed in to change notification settings - Fork 0
/
server.js
30 lines (25 loc) · 902 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
//This server is just to change port cause App service Azure does not like script command 'next start' Check package.json
const express = require('express');
const next = require('next');
const cors = require('cors');
const path = require('path');
require('dotenv').config();
const { Duffel } = require('@duffel/api');
const bodyParser = require('body-parser');
const dev = process.env.NODE_ENV !== 'production';
const app = next({ dev });
const handle = app.getRequestHandler();
app.prepare().then(() => {
const server = express();
server.use(cors()); // Enable CORS for all routes
server.use(express.json());
server.use(bodyParser.json());
server.all('*', (req, res) => {
return handle(req, res);
});
const PORT = process.env.PORT || 8080; // Define the port
server.listen(PORT, (err) => {
if (err) throw err;
console.log(`Server running on port ${PORT}`);
});
});