mirror of
https://github.com/sourcegraph/sourcegraph.git
synced 2026-02-06 17:11:49 +00:00
build: Point to /search URL in help text (#58396)
Recently, the plain URL became the marketing site, so the previous message: ``` [web-standal...p] =================================================== [web-standal...p] [web-standal...p] ✱ Sourcegraph is really ready now! [web-standal...p] [web-standal...p] Click here: https://sourcegraph.test:3443 [web-standal...p] [web-standal...p] =================================================== ``` Would take you to an empty page, potentially leading one to the incorrect conclusion that something was wrong.
This commit is contained in:
parent
6fcbbdf914
commit
cb068f3c98
@ -68,7 +68,7 @@ export const esbuildDevelopmentServer = async (
|
||||
return await new Promise<void>((_resolve, reject) => {
|
||||
proxyServer.once('listening', () => {
|
||||
signale.success(`esbuild server is ready after ${Math.round(performance.now() - start)}ms`)
|
||||
printSuccessBanner(['✱ Sourcegraph is really ready now!', `Click here: ${HTTPS_WEB_SERVER_URL}`])
|
||||
printSuccessBanner(['✱ Sourcegraph is really ready now!', `Click here: ${HTTPS_WEB_SERVER_URL}/search`])
|
||||
})
|
||||
proxyServer.once('error', error => reject(error))
|
||||
})
|
||||
|
||||
Loading…
Reference in New Issue
Block a user