mirror of
https://github.com/gohugoio/hugo.git
synced 2024-11-21 20:46:30 -05:00
Copyedit long help message in commands/server.go
This commit is contained in:
parent
3abb2675c5
commit
5c7234015d
1 changed files with 5 additions and 5 deletions
|
@ -45,18 +45,18 @@ var serverCmd = &cobra.Command{
|
||||||
Use: "server",
|
Use: "server",
|
||||||
Aliases: []string{"serve"},
|
Aliases: []string{"serve"},
|
||||||
Short: "A high performance webserver",
|
Short: "A high performance webserver",
|
||||||
Long: `Hugo provides it's own webserver which builds and serves the site.
|
Long: `Hugo provides its own webserver which builds and serves the site.
|
||||||
While hugo server is high performance, it is a webserver with limited options.
|
While hugo server is high performance, it is a webserver with limited options.
|
||||||
Many run it in production, but the standard behavior is for people to use it in development
|
Many run it in production, but the standard behavior is for people to use it
|
||||||
and use a more full featured server such as Nginx or Caddy.
|
in development and use a more full featured server such as Nginx or Caddy.
|
||||||
|
|
||||||
'hugo server' will avoid writing the rendered and served content to disk,
|
'hugo server' will avoid writing the rendered and served content to disk,
|
||||||
preferring to store it in memory.
|
preferring to store it in memory.
|
||||||
|
|
||||||
By default hugo will also watch your files for any changes you make and
|
By default hugo will also watch your files for any changes you make and
|
||||||
automatically rebuild the site. It will then live reload any open browser pages
|
automatically rebuild the site. It will then live reload any open browser pages
|
||||||
and push the latest content to them. As most hugo sites are built in a fraction
|
and push the latest content to them. As most Hugo sites are built in a fraction
|
||||||
of a second you will be able to save and see your changes nearly instantly.`,
|
of a second, you will be able to save and see your changes nearly instantly.`,
|
||||||
//Run: server,
|
//Run: server,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue