r3-config/config.js

49 lines
1.3 KiB
JavaScript
Raw Normal View History

2017-05-09 17:27:31 +02:00
var environment = {
path : '/usr/share/cybafelo',
2018-05-14 10:20:12 +02:00
protocol : 'https',
localEnvironment : 'dev',
localDomain : 'cybafelo.local',
remoteEnvironment : 'live',
2018-04-12 10:58:35 +02:00
remoteDomain : 'cybafelo.com'
2017-05-09 17:27:31 +02:00
};
2018-05-14 10:20:12 +02:00
var protocol = environment.protocol;
var localEnvironment = environment.localEnvironment;
var localDomain = environment.localDomain;
var remoteEnvironment = environment.remoteEnvironment;
var remoteDomain = environment.remoteDomain;
2017-05-09 17:27:31 +02:00
2016-09-22 16:29:22 +02:00
var config = {
2016-09-27 11:05:32 +02:00
editor: {
2018-05-14 10:20:12 +02:00
url: protocol + '://' + localEnvironment + '-r3-3ditor.' + localDomain,
2016-10-25 17:59:38 +02:00
default: {
2017-04-03 19:00:56 +02:00
platform: 'cybafelo',
2016-10-25 17:59:38 +02:00
account: 'root',
2017-02-23 17:46:50 +01:00
subAccount: 'root',
2018-04-20 16:58:29 +02:00
project: 'test'
2016-11-07 12:43:38 +01:00
}
},
2016-11-08 18:30:09 +01:00
api: {
2018-05-14 10:20:12 +02:00
url: protocol + '://' + localEnvironment + '-r3-api.' + localDomain,
remoteUrl: protocol + '://' + remoteEnvironment + '-r3-api.' + remoteDomain,
2018-04-12 10:58:35 +02:00
uploadPath: '/uploads',
clientPassword: '"kent sent me" motherfucker!'
2017-03-30 17:32:42 +02:00
},
2018-04-12 10:58:35 +02:00
portal: {
2018-05-14 10:20:12 +02:00
url: protocol + '://' + localEnvironment + '-r3-portal.' + localDomain
2017-05-09 17:34:22 +02:00
},
2018-04-20 09:57:39 +02:00
db: {},
environment : environment
2016-04-26 18:10:25 +02:00
};
2016-04-26 18:52:58 +02:00
if (typeof module !== 'undefined') {
2016-11-08 12:34:17 +01:00
if (typeof require !== 'undefined') {
var _ = require('lodash');
2017-03-20 14:39:22 +01:00
_.merge(config, require('./secure'));
2016-11-08 12:34:17 +01:00
}
2016-09-22 16:29:22 +02:00
module.exports = config;
2016-04-26 18:52:58 +02:00
}