From 19037ff3407156d10ff62346238464dcf3b96a71 Mon Sep 17 00:00:00 2001 From: "Theunis J. Botha" Date: Thu, 22 Sep 2016 16:29:22 +0200 Subject: [PATCH] editor and racer configs --- config.js | 24 ++++++++++++++++++------ 1 file changed, 18 insertions(+), 6 deletions(-) diff --git a/config.js b/config.js index 4e7e463..0073967 100644 --- a/config.js +++ b/config.js @@ -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; }