make the config path configurable
This commit is contained in:
parent
04cddf58cf
commit
35dd3abbb5
@ -1,11 +1,14 @@
|
|||||||
|
/* jslint node: true */
|
||||||
|
"use strict";
|
||||||
var config;
|
var config;
|
||||||
|
var configPath = process.env.CRYPTPAD_CONFIG || "../config/config";
|
||||||
try {
|
try {
|
||||||
config = require("../config/config");
|
config = require(configPath);
|
||||||
if (config.adminEmail === 'i.did.not.read.my.config@cryptpad.fr') {
|
if (config.adminEmail === 'i.did.not.read.my.config@cryptpad.fr') {
|
||||||
console.log("You can configure the administrator email (adminEmail) in your config/config.js file");
|
console.log("You can configure the administrator email (adminEmail) in your config/config.js file");
|
||||||
}
|
}
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
console.log("You can customize the configuration by copying config/config.example.js to config/config.js");
|
console.log("Config not found, loading the example config. You can customize the configuration by copying config/config.example.js to " + configPath);
|
||||||
config = require("../config/config.example");
|
config = require("../config/config.example");
|
||||||
}
|
}
|
||||||
module.exports = config;
|
module.exports = config;
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user