server__watch_moduleconfig.txt - hugo - [fork] hugo port for 9front
HTML git clone https://git.drkhsh.at/hugo.git
DIR Log
DIR Files
DIR Refs
DIR Submodules
DIR README
DIR LICENSE
---
server__watch_moduleconfig.txt (438B)
---
1 hugo server --renderToMemory --disableLiveReload &
2
3 waitServer
4 stopServer
5 wait
6 ! stderr .
7 stdout 'Watching for config changes in.*mytheme'
8
9
10 -- hugo.toml --
11 title = "Hugo Server Test"
12 baseURL = "https://example.org/"
13 disableKinds = ["section", "page", "taxonomy", "term", "RSS", "sitemap", "robotsTXT", "404"]
14 theme = "mytheme"
15 -- layouts/index.html --
16 foo: {{ .Site.Params.foo }}
17 -- themes/mytheme/hugo.toml --
18 [params]
19 foo = "bar"