editor and racer configs

beta.r3js.org
Theunis J. Botha 2016-09-22 16:29:22 +02:00
parent 7524c74e5a
commit 19037ff340
1 changed files with 18 additions and 6 deletions

View File

@ -1,11 +1,23 @@
var serverConfiguration = {
"vr_pong" : {
"url" : "http://pong.gamewheel.local",
"port" : 3101
}
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
}
};
if (typeof module !== 'undefined') {
module.exports.gamewheelServerConfiguration = serverConfiguration;
module.exports = config;
}