1
0
mirror of https://github.com/Unleash/unleash.git synced 2024-10-18 20:09:08 +02:00
unleash.unleash/server-impl.js
2020-02-20 08:30:37 +01:00

51 lines
1.4 KiB
JavaScript

'use strict';
const logger = require('./lib/logger');
const migrator = require('./migrator');
const { createStores } = require('./lib/db');
const DEFAULT_OPTIONS = {
databaseUri: process.env.DATABASE_URL || 'postgres://unleash_user:passord@localhost:5432/unleash',
port: process.env.HTTP_PORT || process.env.PORT || 4242,
baseUriPath: process.env.BASE_URI_PATH || '',
};
function createApp (options) {
// Database dependecies (statefull)
const stores = createStores(options);
const config = {
baseUriPath: options.baseUriPath,
port: options.port,
publicFolder: options.publicFolder,
stores,
};
const app = require('./app')(config);
const server = app.listen(app.get('port'), () => {
logger.info(`Unleash started on ${app.get('port')}`);
});
return { app, server };
}
function start (opts) {
const options = Object.assign({}, DEFAULT_OPTIONS, opts);
if (!options.databaseUri) {
throw new Error('You must either pass databaseUri option or set environemnt variable DATABASE_URL');
}
return migrator(options.databaseUri)
.then(() => createApp(options))
.catch(err => logger.error('failed to migrate db', err));
}
process.on('uncaughtException', err => {
logger.error('Uncaught Exception:', err.message);
logger.error(err.stack);
});
module.exports = {
start,
};