mirror of
https://github.com/Unleash/unleash.git
synced 2024-12-28 00:06:53 +01:00
b912768923
* feat: move secrets to settings * feat: Add better support for detailed db options. Added db field in options to allow better control of db-options. Especially important to allow special chars in database password which might lead to an invaid url when defined as a database-url. * fix: integrate logger with knex logger * fix: remove secret option from all examples * fix: more options.js unit tests * fix: added settings-store e2e tests
19 lines
479 B
JavaScript
19 lines
479 B
JavaScript
'use strict';
|
|
|
|
// const unleash = require('unleash-server');
|
|
const unleash = require('../lib/server-impl.js');
|
|
|
|
const basicAuth = require('./basic-auth-hook');
|
|
|
|
unleash
|
|
.start({
|
|
databaseUrl: 'postgres://unleash_user:passord@localhost:5432/unleash',
|
|
adminAuthentication: 'custom',
|
|
preRouterHook: basicAuth,
|
|
})
|
|
.then(server => {
|
|
console.log(
|
|
`Unleash started on http://localhost:${server.app.get('port')}`
|
|
);
|
|
});
|