2019-05-19 08:34:20 +02:00
|
|
|
'use strict';
|
|
|
|
|
|
|
|
// const unleash = require('unleash-server');
|
2021-02-12 11:42:00 +01:00
|
|
|
const unleash = require('../dist/lib/server-impl.js');
|
2019-05-19 08:34:20 +02:00
|
|
|
|
2019-05-19 08:38:07 +02:00
|
|
|
const enableKeycloak = require('./keycloak-auth-hook');
|
2019-05-19 08:34:20 +02:00
|
|
|
|
|
|
|
unleash
|
|
|
|
.start({
|
|
|
|
databaseUrl: 'postgres://unleash_user:passord@localhost:5432/unleash',
|
|
|
|
adminAuthentication: 'custom',
|
2019-05-19 08:38:07 +02:00
|
|
|
preRouterHook: enableKeycloak,
|
2019-05-19 08:34:20 +02:00
|
|
|
})
|
|
|
|
.then(server => {
|
2020-04-14 22:29:11 +02:00
|
|
|
// eslint-disable-next-line no-console
|
2019-05-19 08:34:20 +02:00
|
|
|
console.log(
|
2020-04-14 22:29:11 +02:00
|
|
|
`Unleash started on http://localhost:${server.app.get('port')}`,
|
2019-05-19 08:34:20 +02:00
|
|
|
);
|
|
|
|
});
|