r3-config/config.js

70 lines
1.5 KiB
JavaScript
Raw Normal View History

2016-09-22 16:29:22 +02:00
var config = {
2016-09-27 11:05:32 +02:00
vr_pong: {
2017-04-03 19:00:56 +02:00
url: "https://tj-3d-pong.cybafelo.com"
2016-09-22 16:29:22 +02:00
},
2016-09-27 11:05:32 +02:00
vr_racer: {
2017-04-03 19:00:56 +02:00
url: "https://tj-3d-racing.cybafelo.com"
2016-09-22 16:29:22 +02:00
},
2016-09-27 11:05:32 +02:00
editor: {
2017-04-03 19:00:56 +02:00
url: "https://tj-3d-editor.cybafelo.com",
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',
nameOfTheGame: 'test'
2017-02-14 02:11:44 +01:00
},
uploadPath: '/uploads'
2016-09-26 16:15:21 +02:00
},
2017-01-24 12:55:37 +01:00
api16: {
2017-04-03 19:00:56 +02:00
url: "https://tj-api-v1.cybafelo.com"
2017-01-24 12:55:37 +01:00
},
2016-11-07 12:43:38 +01:00
tools: {
2017-04-03 19:00:56 +02:00
url: "https://tj-tools.cybafelo.com",
2016-11-07 15:34:33 +01:00
default: {
2017-04-03 19:00:56 +02:00
platform: 'cybafelo',
2016-11-07 15:34:33 +01:00
account: 'root',
subAccount: 'root'
2016-11-07 12:43:38 +01:00
}
},
2016-11-08 18:30:09 +01:00
app: {
2017-04-03 19:00:56 +02:00
url: 'https://tj-app.cybafelo.com'
2016-11-08 12:34:17 +01:00
},
2016-11-08 18:30:09 +01:00
api: {
2017-04-03 19:00:56 +02:00
url: 'https://tj-api.cybafelo.com'
2016-11-08 12:34:17 +01:00
},
2017-03-20 14:39:22 +01:00
cdn: {
2017-04-03 19:00:56 +02:00
url: 'https://tj-cdn.cybafelo.com'
2017-03-20 14:39:22 +01:00
},
gate: {
2017-04-03 19:00:56 +02:00
url: 'https://tj-gate.cybafelo.com'
2017-03-20 14:39:22 +01:00
},
content: {
2017-04-03 19:00:56 +02:00
url: 'https://tj-content.cybafelo.com'
2017-03-20 14:39:22 +01:00
},
asset: {
2017-04-03 19:00:56 +02:00
url: 'https://tj-asset.cybafelo.com'
2017-03-20 14:39:22 +01:00
},
2016-11-08 18:30:09 +01:00
port: {
2017-04-03 19:00:56 +02:00
url: 'https://tj-port.cybafelo.com'
2016-11-08 12:34:17 +01:00
},
2017-03-30 17:32:42 +02:00
cron: {
2017-04-03 19:00:56 +02:00
url: 'https://tj-cron.cybafelo.com'
2017-03-30 17:32:42 +02:00
},
environment: {
2017-01-24 17:44:43 +01:00
mode: 'development'
2016-09-22 16:29:22 +02:00
}
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'));
_.merge(config, require('./connection'));
_.merge(config, require('./model'));
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
}