1
0
mirror of https://github.com/Unleash/unleash.git synced 2024-10-18 20:09:08 +02:00
unleash.unleash/docs/getting-started.md

84 lines
3.7 KiB
Markdown
Raw Normal View History

2016-12-23 12:00:07 +01:00
# Getting stated
2016-12-02 17:47:13 +01:00
## Requirements
2016-11-30 21:46:40 +01:00
You will need Node.js >= 8.0.0 and a __PostreSQL__ 9.5+ database instance to be able to run Unleash.
2016-11-30 21:46:40 +01:00
2016-12-02 17:47:13 +01:00
When starting Unleash you must specify a database uri (can be set as environment variable DATABASE_URL)
which includes a username and password, that have rights to migrate the database.
2016-12-02 17:47:13 +01:00
On startup _Unleash_ will perform necessary migrations if needed.
2016-12-02 17:47:13 +01:00
## Start Unleash
2016-11-30 21:46:40 +01:00
### 1. The simplest way to get started:
```bash
$ npm install unleash-server -g
$ unleash -d postgres://unleash_user:passord@localhost:5432/unleash -p 4242
2017-02-25 08:53:38 +01:00
Unleash started on http://localhost:4242
```
2016-11-30 21:46:40 +01:00
### 2. Or programmatically:
2016-12-02 17:47:13 +01:00
You can also depend on unleash
```js
const unleash = require('unleash-server');
unleash.start({
2017-06-28 16:52:28 +02:00
databaseUrl: 'postgres://unleash_user:passord@localhost:5432/unleash',
port: 4242
}).then(unleash => {
2017-02-25 08:53:38 +01:00
console.log(`Unleash started on http://localhost:${unleash.app.get('port')}`);
});
```
2016-12-02 17:47:13 +01:00
Available unleash options includes:
- **databaseUrl** - the postgress database url to connect to. Should include username/password.
- **port** - Which port should the unleash-server bind to?
2017-11-17 13:56:04 +01:00
- **enableLegacyRoutes** (boolean) - allows you to turn on/off support for legacy routes to support older clients. Enabled by default.
- **serverMetrics** (boolean) - Use this option to turn off prometheus metrics.
2017-11-17 13:56:04 +01:00
- **preHook** (function) - This is a hook if you need to provide any middlewares to express before `unleash` adds any. Express app instance is injected as first arguement.
- **preRouterHook** (function) - Use this to register custom express middlewares before the `unleash` specific routers are added. This is typically how you would register custom middlewares to handle authentication.
- **secret** (string) - Set this when you want to secure unleash. Used to encrypt the user session.
- **adminAuthentication** (string) - Use this when implementing custom admin authentication [securing-unleash](./securing-unleash.md). Possible values are:
- `none` - Will disable authentication altogether
- `unsecure` - (default) Will use simple cookie based authentication. UI will require the user to specify an email in order to use unleash.
- `custom` - Use this when you implement your own custom authentication logic.
## How do I configure the log output?
By default, `unleash` uses [log4js](https://github.com/nomiddlename/log4js-node) to log important information. It is possible to swap out the logger provider (only when using Unleash programmatically). This enables filtering of log levels and easy redirection of output streams.
### What is a logger provider?
A logger provider is a function which takes the name of a logger and returns a logger implementation. For instance, the following code snippet shows how a logger provider for the global `console` object could be written:
```javascript
function consoleLoggerProvider (name) {
// do something with the name
return {
2017-08-05 15:57:54 +02:00
debug: console.log,
info: console.log,
warn: console.log,
error: console.error
};
}
```
The logger interface with its `debug`, `info`, `warn` and `error` methods expects format string support as seen in `debug` or the JavaScript `console` object. Many commonly used logging implementations cover this API, e.g. bunyan, pino or winston.
### How do I set a logger provider?
Custom logger providers need to be set *before requiring the `unleash-server` module*. The following example shows how this can be done:
```javascript
// first configure the logger provider
const unleashLogger = require('unleash-server/logger');
unleashLogger.setLoggerProvider(consoleLoggerProvider);
// then require unleash-server and continue as normal
2017-08-08 10:04:51 +02:00
const unleash = require('unleash-server');
```