Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -882,6 +882,9 @@ unified domain, while each pack deploys and previews independently.
not already there. The dashboard schema is at
`nebari-dev/software-pack-dashboard/schema/pack-metadata.schema.json`.

4. **Set `params.logoLink = "https://packs.nebari.dev/"` in `hugo.toml`** so the header
logo returns to the portal.

### How it works

- **Production:** push to `main` builds Hugo with `baseURL https://packs.nebari.dev/<slug>/`
Expand Down
2 changes: 1 addition & 1 deletion docs/site/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ module github.com/nebari-dev/nebari-software-pack-template/docs/site

go 1.26.3

require github.com/nebari-dev/nebari-hugo-theme v0.1.1 // indirect
require github.com/nebari-dev/nebari-hugo-theme v0.2.0 // indirect
2 changes: 2 additions & 0 deletions docs/site/go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,5 @@ github.com/nebari-dev/nebari-hugo-theme v0.1.0 h1:xfzAx5ZEjjn5jrxKox8FtmnaDaBGi8
github.com/nebari-dev/nebari-hugo-theme v0.1.0/go.mod h1:N0PJCjHPJ69fOjfhNfaZsXcr+0CryBTJ7xEx7pmARSk=
github.com/nebari-dev/nebari-hugo-theme v0.1.1 h1:yhWGv1J1ipsGW9jZRKo/J7cN84neh4w+jIwBe6mAmXc=
github.com/nebari-dev/nebari-hugo-theme v0.1.1/go.mod h1:N0PJCjHPJ69fOjfhNfaZsXcr+0CryBTJ7xEx7pmARSk=
github.com/nebari-dev/nebari-hugo-theme v0.2.0 h1:OsqVFwvwhmjJCtLe60OIk4lPZb1OUviHHvb4nozWlxE=
github.com/nebari-dev/nebari-hugo-theme v0.2.0/go.mod h1:N0PJCjHPJ69fOjfhNfaZsXcr+0CryBTJ7xEx7pmARSk=
3 changes: 2 additions & 1 deletion docs/site/hugo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ languageCode = "en-us"
title = "Building a Software Pack"
enableGitInfo = true

# Theme imported as a Hugo Module, pinned to a release tag in go.mod (currently v0.1.1).
# Theme imported as a Hugo Module, pinned to a release tag in go.mod (currently v0.2.0).
[module]
[[module.imports]]
path = "github.com/nebari-dev/nebari-hugo-theme"
Expand All @@ -23,6 +23,7 @@ enableGitInfo = true
home = ["HTML", "RSS", "JSON"]

[params]
logoLink = "https://packs.nebari.dev/"
description = "A deep-dive guide to building, deploying, and maintaining Nebari Software Packs - Kubernetes applications with routing, TLS, and OIDC wired in."
repo = "https://github.com/nebari-dev/nebari-software-pack-template"
editBase = "https://github.com/nebari-dev/nebari-software-pack-template/edit/main/docs/site/content"
Expand Down
Loading