summaryrefslogtreecommitdiffstats
path: root/testscripts/commands/hugo_configdev_env.txt
blob: 758f4fc96435726ceec28640469fbe798145601d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# Test the hugo command.
env HUGO_ENV=development

hugo
grep 'myparam: dev§'  public/index.html

-- hugo.toml --
baseURL = "http://example.org/"
disableKinds = ["RSS", "sitemap", "robotsTXT", "404", "taxonomy", "term"]
-- layouts/index.html --
myparam: {{ site.Params.myparam }}§
-- layouts/_default/single.html --
Title: {{ .Title }}
-- config/development/params.toml --
myparam = "dev"
-- content/p1.md --
---
title: "P1"
---