Skip to content

Commit

Permalink
Welcome message in serve cmd
Browse files Browse the repository at this point in the history
  • Loading branch information
fadeev committed Jun 24, 2020
1 parent d1d72b7 commit add9b15
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion cmd/app.go
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,14 @@ var appCmd = &cobra.Command{
pwd, _ := os.Getwd()
run.Root = pwd + "/" + appName
run.Run()
fmt.Printf("\n⭐️ Successfully created a Cosmos app `%[1]v`.\n\n", appName)
message := `
⭐️ Successfully created a Cosmos app '%[1]v'.
👉 Get started with the following commands:
%% cd %[1]v
%% starport serve
`
fmt.Printf(message, appName)
},
}

0 comments on commit add9b15

Please sign in to comment.