We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6198cb4 commit cd4224dCopy full SHA for cd4224d
lib/cli/start.js
@@ -124,7 +124,7 @@ const start = function (file) {
124
options.env = program.environment || process.env.DPD_ENV || options.env;
125
if (options.env !== 'development') console.log('starting in %s mode', options.env);
126
127
- if (credentials !== undefined) options.db.credentials = credentials;
+ if (credentials && credentials.length > 0) options.db.credentials = credentials;
128
129
let dpd = createServer(options);
130
dpd.on('listening', onListening);
lib/createtemplate/package.json
@@ -3,7 +3,7 @@
3
"node": ">= 4.0"
4
},
5
"dependencies": {
6
- "deployd": "^1.0.0-beta",
+ "deployd": "^1.0.0",
7
"dpd-dashboard": "^0.0.1",
8
"dpd-clientlib": "^0.0.1"
9
}
0 commit comments