Skip to content

Commit

Permalink
chore(cli): open jupyer notebook with /lab
Browse files Browse the repository at this point in the history
  • Loading branch information
pascalbreuninger committed Sep 20, 2023
1 parent c5a3777 commit 10e2ea9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/up.go
Original file line number Diff line number Diff line change
Expand Up @@ -471,7 +471,7 @@ func startJupyterNotebookInBrowser(
}

// wait until reachable then open browser
targetURL := fmt.Sprintf("http://localhost:%d", jupyterPort)
targetURL := fmt.Sprintf("http://localhost:%d/lab", jupyterPort)
if jupyter.Options.GetValue(ideOptions, jupyter.OpenOption) == "true" {
go func() {
err = open2.Open(ctx, targetURL, logger)
Expand Down

0 comments on commit 10e2ea9

Please sign in to comment.