This repo receives deployment details from Argo CD, which is then used to build https://release.digdir.no/
- Install Hugo
- Clone the repo
- Run
git submodule update --init --recursiveto fetch the theme - Run
npm installto install dependencies - Run
hugo serveto start the local server
Run local server: hugo serve
Build site with: hugo
Create a new product folder:
mkdir -p content/my-productThen add the file with a title and menu entry:
---
title: My Product Name
menu:
sidebar:
weight: 10
---The weight parameter controls the order in the sidebar (lower numbers appear first). The product display name comes from the title field.