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; }