1
0
mirror of https://github.com/trezor/trezor-wallet synced 2024-11-13 20:08:56 +00:00
trezor-wallet/server/index.js
2018-10-24 17:58:10 +02:00

38 lines
1.3 KiB
JavaScript

const express = require('express');
const morgan = require('morgan');
const fs = require('fs');
const path = require('path');
const https = require('https');
const commander = require('commander');
commander
.version('0.1.0')
.option('-b, --buildType [type]', 'Set the build type')
.parse(process.argv);
const privateKey = fs.readFileSync('server/key.pem').toString();
const certificate = fs.readFileSync('server/cert.pem').toString();
const credentials = { key: privateKey, cert: certificate };
const app = express();
const PORT = process.env.PORT || 8080;
// Setup logger
app.use(morgan(':remote-addr - :remote-user [:date[clf]] ":method :url HTTP/:http-version" :status :res[content-length] :response-time ms'));
// Serve static assets
app.use(express.static(path.resolve(__dirname, '..', 'build', commander.buildType)));
// Always return the main index.html, so react-router render the route in the client
app.get('*', (req, res) => {
res.sendFile(path.resolve(__dirname, '..', 'build', commander.buildType, 'index.html'));
});
const httpsServer = https.createServer(credentials, app);
httpsServer.listen(PORT);
console.log('-·-·-·-·-·-·-·-·-·-·-·-·-·-·-·-·-·-·-·-·-·-·-');
console.log(`🌐 Application is listening on port ${PORT}`);
console.log('-·-·-·-·-·-·-·-·-·-·-·-·-·-·-·-·-·-·-·-·-·-·-');