mirror of
https://github.com/gohugoio/hugo.git
synced 2024-11-07 20:30:36 -05:00
cf38c73f53
* commands: Add TLS/HTTPS support to hugo server The "auto cert" handling in this PR is backed by mkcert (see link below). To get this up and running on a new PC, you can: ``` hugo server trust hugo server --tlsAuto ``` When `--tlsAuto` (or `--tlsCertFile` and `--tlsKeyFile`) is set and no `--baseURL` is provided as a flag, the server is started with TLS and `https` as the protocol. Note that you only need to run `hugo server trust` once per PC. If you already have the key and the cert file (e.g. by using mkcert directly), you can do: ``` hugo server --tlsCertFile mycert.pem --tlsKeyFile mykey.pem ``` See https://github.com/FiloSottile/mkcert Fixes #11064
19 lines
No EOL
519 B
Text
19 lines
No EOL
519 B
Text
# Test the gen commands.
|
|
# Note that adding new commands will require updating the NUM_COMMANDS value.
|
|
env NUM_COMMANDS=42
|
|
|
|
hugo gen -h
|
|
stdout 'A collection of several useful generators\.'
|
|
|
|
hugo gen doc --dir clidocs
|
|
checkfilecount $NUM_COMMANDS clidocs
|
|
|
|
hugo gen man -h
|
|
stdout 'up-to-date man pages'
|
|
hugo gen man --dir manpages
|
|
checkfilecount $NUM_COMMANDS manpages
|
|
|
|
hugo gen chromastyles -h
|
|
stdout 'Generate CSS stylesheet for the Chroma code highlighter'
|
|
hugo gen chromastyles --style monokai
|
|
stdout 'color: #f8f8f2' |