r3-config/config.js

29 lines
518 B
JavaScript
Raw Normal View History

2016-09-22 16:29:22 +02:00
var config = {
vr_pong : {
2016-09-26 16:19:13 +02:00
url: "http://pong",
2016-09-26 16:15:21 +02:00
port: 3101,
debugPort: 3201
2016-09-22 16:29:22 +02:00
},
vr_racer : {
2016-09-26 16:19:13 +02:00
url: "http://racer",
2016-09-22 16:29:22 +02:00
port: 3102,
2016-09-26 16:15:21 +02:00
debugPort: 3202
2016-09-22 16:29:22 +02:00
},
editor : {
2016-09-26 16:19:13 +02:00
url: "http://3d-editor.gamewheel.com",
2016-09-22 16:29:22 +02:00
port: 3103,
2016-09-26 16:15:21 +02:00
debugPort: 3203,
2016-09-22 16:29:22 +02:00
cluster: false
2016-09-26 16:15:21 +02:00
},
api16 : {
2016-09-26 16:19:13 +02:00
url: "http://api16.gamewheel.com",
2016-09-26 16:15:21 +02:00
port: 3104,
debugPort: 3204
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-09-22 16:29:22 +02:00
module.exports = config;
2016-04-26 18:52:58 +02:00
}