From 2522113afb8453c978212261cca42f6db3f3a15f Mon Sep 17 00:00:00 2001 From: Tim Robinson Date: Tue, 20 Oct 2015 10:49:21 +0000 Subject: [PATCH] Making onlinedev have separate eu and usw regions. Renaming all odev to onlinedev across the codebase to be consistent with hostnames --- package.json | 2 ++ server.js | 3 ++- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index b54817a5..539c4273 100644 --- a/package.json +++ b/package.json @@ -108,6 +108,8 @@ "c9.ide.save": "#e00549cb0f", "c9.ide.scm": "#38d2b48b31", "c9.ide.terminal.monitor": "#b76f1c9f24", + "c9.ide.test": "#d312a01ac6", + "c9.ide.test.mocha": "#79ff886c04", "c9.ide.theme.flat": "#2de8414db7", "c9.ide.threewaymerge": "#229382aa0b", "c9.ide.undo": "#b028bcb4d5", diff --git a/server.js b/server.js index 2711230c..d61f0b82 100755 --- a/server.js +++ b/server.js @@ -24,12 +24,13 @@ var DEFAULT_SETTINGS = getDefaultSettings(); var shortcuts = { "dev" : ["ide", "preview", "vfs", "api", "sapi", "proxy", "redis", "profile", "oldclient", "homepage", "apps-proxy", "-s", "devel"], - "odev" : ["ide", "preview", "vfs", "api", "proxy", "oldclient", "homepage", "apps-proxy", "profile", "worker", "-s", "onlinedev"], + "onlinedev" : ["ide", "preview", "vfs", "api", "proxy", "oldclient", "homepage", "apps-proxy", "profile", "worker", "-s", "onlinedev"], "bill" : ["ide", "preview", "vfs", "api", "proxy", "oldclient", "homepage", "apps-proxy", "profile", "-s", "billing"], "beta" : ["ide", "preview", "vfs", "proxy", "-s", "beta"], "ci" : ["ide", "preview", "vfs", "proxy", "-s", "ci"], "s" : ["standalone", "-s", "standalone"] }; +shortcuts.odev = shortcuts.onlinedev; // For backwards compatibility, if you see this in 2016 remove this line var delayLoadConfigs = ["preview", "api", "oldclient", "apps-proxy", "worker"]; module.exports = main;