From 1b48ff8f2a8d33be9f851f1658f3bb525bd9512d Mon Sep 17 00:00:00 2001 From: Matthieu Vachon Date: Thu, 16 Apr 2020 15:19:06 -0400 Subject: [PATCH] Re-layout a bit relevant links and use the proxied URL for GraphiQL --- launcher/cli/start.go | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/launcher/cli/start.go b/launcher/cli/start.go index 5c3b9cc4..9548a0ed 100644 --- a/launcher/cli/start.go +++ b/launcher/cli/start.go @@ -128,13 +128,12 @@ func printWelcomeMessage() { message := strings.TrimLeft(` Your instance should be ready in a few seconds, here some relevant links: - Dashboard: http://localhost%s - GraphiQL: http://localhost%s/graphiql - Eosq: http://localhost%s + Dashboard: http://localhost%s + GraphiQL: http://localhost%s/graphiql + Eosq: http://localhost%s `, "\n") - userLog.Printf(message, DashboardHTTPListenAddr, DgraphqlHTTPServingAddr, EosqHTTPServingAddr) - + userLog.Printf(message, DashboardHTTPListenAddr, DashboardHTTPListenAddr, EosqHTTPServingAddr) } func parseAppsFromArgs(args []string, runProducer bool) (apps []string) {