example swap
This commit is contained in:
parent
25013e7864
commit
5cf90c1109
10
README.md
10
README.md
|
@ -67,11 +67,10 @@ Greenlock.create({
|
||||||
You may use database URLs (also known as 'connection strings') to initialize sequelize:
|
You may use database URLs (also known as 'connection strings') to initialize sequelize:
|
||||||
|
|
||||||
```js
|
```js
|
||||||
var Sequelize = require('sequelize');
|
var dbUrl = 'postgres://user:pass@hostname:port/database';
|
||||||
var db = new Sequelize('postgres://user:pass@hostname:port/database');
|
|
||||||
|
|
||||||
Greenlock.create({
|
Greenlock.create({
|
||||||
store: require('greenlock-store-sequelize').create({ db: db })
|
store: require('greenlock-store-sequelize').create({ storeDatabaseUrl: dbUrl })
|
||||||
...
|
...
|
||||||
});
|
});
|
||||||
```
|
```
|
||||||
|
@ -79,10 +78,11 @@ Greenlock.create({
|
||||||
If you need to use **custom options**, just instantiate sequelize directly:
|
If you need to use **custom options**, just instantiate sequelize directly:
|
||||||
|
|
||||||
```js
|
```js
|
||||||
var dbUrl = 'postgres://user:pass@hostname:port/database';
|
var Sequelize = require('sequelize');
|
||||||
|
var db = new Sequelize('postgres://user:pass@hostname:port/database');
|
||||||
|
|
||||||
Greenlock.create({
|
Greenlock.create({
|
||||||
store: require('greenlock-store-sequelize').create({ storeDatabaseUrl: dbUrl })
|
store: require('greenlock-store-sequelize').create({ db: db })
|
||||||
...
|
...
|
||||||
});
|
});
|
||||||
```
|
```
|
||||||
|
|
Loading…
Reference in New Issue