From b2ea3f967380707fb40cb2fd81e83374e8064639 Mon Sep 17 00:00:00 2001 From: Tom Ross Date: Fri, 22 Oct 2021 11:30:29 +0100 Subject: [PATCH] Rename web-standalone to web-standalone-http for http-only (#26495) --- client/web/README.md | 2 +- sg.config.yaml | 12 ++++++------ 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/client/web/README.md b/client/web/README.md index 03c59efa2a9..6660a6266b1 100644 --- a/client/web/README.md +++ b/client/web/README.md @@ -55,7 +55,7 @@ sg start oss-web-standalone-prod Web app should be available at `https://${SOURCEGRAPH_HTTPS_DOMAIN}:${SOURCEGRAPH_HTTPS_PORT}`. Build artifacts will be served from `/ui/assets`. -Note: If you are unable to use the above commands (e.g. you can't install Caddy), you can use `sg run web-standalone` instead. This will start a development server using only Node, and will be available at `http://localhost:${CLIENT_PROXY_DEVELOPMENT_PORT}`. +Note: If you are unable to use the above commands (e.g. you can't install Caddy), you can use `sg run web-standalone-http` instead. This will start a development server using only Node, and will be available at `http://localhost:${CLIENT_PROXY_DEVELOPMENT_PORT}`. ### API proxy diff --git a/sg.config.yaml b/sg.config.yaml index 11ca70a77f8..ce096e53a17 100644 --- a/sg.config.yaml +++ b/sg.config.yaml @@ -326,14 +326,14 @@ commands: env: ENTERPRISE: 1 - web-standalone: + web-standalone-http: cmd: yarn workspace @sourcegraph/web serve:dev install: yarn --no-progress env: WEBPACK_SERVE_INDEX: true SOURCEGRAPH_API_URL: https://k8s.sgdev.org - web-standalone-prod: + web-standalone-http-prod: cmd: yarn workspace @sourcegraph/web serve:prod install: yarn workspace @sourcegraph/web run build env: @@ -917,26 +917,26 @@ commandsets: web-standalone: commands: - - web-standalone + - web-standalone-http - caddy env: ENTERPRISE: 1 oss-web-standalone: commands: - - web-standalone + - web-standalone-http - caddy web-standalone-prod: commands: - - web-standalone-prod + - web-standalone-http-prod - caddy env: ENTERPRISE: 1 oss-web-standalone-prod: commands: - - web-standalone-prod + - web-standalone-http-prod - caddy tests: