commands: Add helpful instuctions after "hugo new site"
authordigitalcraftsman <digitalcraftsman@protonmail.com>
Sat, 2 Apr 2016 23:24:56 +0000 (01:24 +0200)
committerdigitalcraftsman <digitalcraftsman@protonmail.com>
Fri, 8 Apr 2016 16:03:49 +0000 (18:03 +0200)
Fixes #1164

commands/new.go

index c3f04f4717498644b903a87d382fa4e078024bea..fe4ed75e17c78dfeb291a7c84dc543a58057155b 100644 (file)
@@ -150,7 +150,15 @@ func doNewSite(basepath string, force bool) error {
 
        createConfig(basepath, configFormat)
 
-       jww.FEEDBACK.Printf("Congratulations! Your new Hugo site is created in %q.\n", basepath)
+       jww.FEEDBACK.Printf("Congratulations! Your new Hugo site is created in %q.\n\n", basepath)
+       jww.FEEDBACK.Println(`Just a few more steps and you're ready to go:
+
+1. Download a theme into the same-named folder. Choose a theme from https://themes.gohugo.io or
+   create your own with the "hugo new theme <THEMENAME>" command
+2. Perhaps you want to add some content. You can add single files with "hugo new <SECTIONNAME>/<FILENAME>.<FORMAT>"
+3. Start the built-in live server via "hugo server"
+
+For more information read the documentation at https://gohugo.io.`)
 
        return nil
 }