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:
Varun Gandhi 2023-11-17 14:50:04 +08:00 committed by GitHub
parent 6fcbbdf914
commit cb068f3c98
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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))
})