2019-05-15 03:43:19 +08:00
|
|
|
/* jslint node: true */
|
|
|
|
"use strict";
|
2019-04-17 19:48:39 +08:00
|
|
|
var config;
|
2020-02-28 02:09:12 +08:00
|
|
|
var configPath = process.env.CRYPTPAD_CONFIG || "../config/config.js";
|
2019-04-17 19:48:39 +08:00
|
|
|
try {
|
2019-05-15 03:43:19 +08:00
|
|
|
config = require(configPath);
|
2019-04-17 19:48:39 +08:00
|
|
|
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");
|
|
|
|
}
|
|
|
|
} catch (e) {
|
2020-01-05 06:58:01 +08:00
|
|
|
if (e instanceof SyntaxError) {
|
|
|
|
console.error("config/config.js is faulty. See stacktrace below for more information. Terminating. \n");
|
|
|
|
console.error(e.name + ": " + e.message);
|
|
|
|
console.error(e.stack.split("\n\n")[0]);
|
|
|
|
process.exit(1);
|
|
|
|
} else {
|
|
|
|
console.log("Config not found, loading the example config. You can customize the configuration by copying config/config.example.js to " + configPath);
|
|
|
|
}
|
2019-04-17 19:48:39 +08:00
|
|
|
config = require("../config/config.example");
|
|
|
|
}
|
|
|
|
module.exports = config;
|
|
|
|
|