Skip to content

Commit 57c0713

Browse files
fix: warn about ~600 MB download before first server start (conductor-oss/getting-started#3) (#85)
Print a heads-up message before the JAR download begins so users know to expect a large download. Also surfaces the Docker alternative for users who want a faster first-run experience.
1 parent 7244a53 commit 57c0713

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

cmd/server.go

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -598,6 +598,8 @@ func startServer(cmd *cobra.Command, args []string) error {
598598
}
599599

600600
if _, err := os.Stat(jarPath); os.IsNotExist(err) {
601+
fmt.Println("First run: downloading the Conductor server JAR (~600 MB). This may take a few minutes.")
602+
fmt.Println("Tip: for a faster start, use Docker instead: docker run -p 8080:8080 conductoross/conductor:latest")
601603
if err := downloadJar(jarPath, jarURL); err != nil {
602604
return fmt.Errorf("failed to download server: %w", err)
603605
}

0 commit comments

Comments
 (0)