change config value to useDotenv
This commit is contained in:
parent
ee6d97fd7f
commit
674cec7502
|
@ -32,7 +32,7 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
"dotenv": true,
|
"useDotenv": true,
|
||||||
|
|
||||||
"storage": {
|
"storage": {
|
||||||
"type": "file"
|
"type": "file"
|
||||||
|
|
|
@ -16,7 +16,7 @@ const config = JSON.parse(fs.readFileSync(configPath, 'utf8'));
|
||||||
config.port = process.env.PORT || config.port || 7777;
|
config.port = process.env.PORT || config.port || 7777;
|
||||||
config.host = process.env.HOST || config.host || 'localhost';
|
config.host = process.env.HOST || config.host || 'localhost';
|
||||||
|
|
||||||
if (config.dotEnv) {
|
if (config.useDotenv) {
|
||||||
require('dotenv').config();
|
require('dotenv').config();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -48,7 +48,7 @@ if (!config.storage.type) {
|
||||||
|
|
||||||
var Store, preferredStore;
|
var Store, preferredStore;
|
||||||
|
|
||||||
if (config.dotEnv) {
|
if (config.useDotenv) {
|
||||||
config.storage.password = process.env.STORAGE_PASSWORD;
|
config.storage.password = process.env.STORAGE_PASSWORD;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user