r3-config/config.js

24 lines
491 B
JavaScript
Raw Normal View History

2016-09-22 16:29:22 +02:00
var config = {
vr_pong : {
"url": "http://pong.gamewheel.local",
"port": 3101
},
vr_racer : {
url: "http://racer.gamewheel.local",
port: 3102,
api_url: "http://api.gamewheel.local"
},
editor : {
url: "http://3d-editor.gamewheel.local",
apiUrl: "http://api.gamewheel.local",
port: 3103,
debugPort: 3104,
cluster: false
}
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
}