1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-02-09 00:18:00 +01:00

chore: fix typo (#523)

This commit is contained in:
Jürgen Etzlstorfer 2019-11-03 10:06:17 -08:00 committed by Ivar Conradi Østhus
parent 9e5b5ea5ea
commit bef08d00c9

View File

@ -17,7 +17,7 @@ On startup _Unleash_ will perform necessary migrations if needed.
```bash ```bash
$ npm install unleash-server -g $ npm install unleash-server -g
$ unleash -d postgres://unleash_user:passord@localhost:5432/unleash -p 4242 $ unleash -d postgres://unleash_user:password@localhost:5432/unleash -p 4242
Unleash started on http://localhost:4242 Unleash started on http://localhost:4242
``` ```
@ -31,7 +31,7 @@ const unleash = require('unleash-server');
unleash unleash
.start({ .start({
databaseUrl: 'postgres://unleash_user:passord@localhost:5432/unleash', databaseUrl: 'postgres://unleash_user:password@localhost:5432/unleash',
port: 4242, port: 4242,
}) })
.then(unleash => { .then(unleash => {