Hugo is a static site generator written in Go, optimized for speed and designed for flexibility.
Install the Hugo with respect to your Operating System (OS).
Follow the instruction below:
-
Create a new project:
hugo new site hugo-blog
-
Navigate to Hugo project root:
cd hugo-blog
-
Install the
book
theme:git submodule add https://github.com/alex-shpak/hugo-book themes/hugo-book
-
Modify the configuration and add the
book
theme tohugo.toml
:baseURL = 'https://wiki.databurst.tech' languageCode = 'en-us' title = 'Databurst Data Engineering Wiki' theme = "hugo-book"
-
[optional] Copy the sample content from existing examples:
cp -R themes/hugo-book/exampleSite/content.en/* ./content
-
Start the development server:
hugo server