This guide explains how to set up the Hiero website locally on a Linux system.
Install Git, Node.js, npm, and Hugo (extended).
sudo apt update
sudo apt install git nodejs npm -y
sudo snap install hugo --channel=extended
Clone the repository and navigate into it:
git clone https://github.com/hiero-ledger/hiero-website.git
cd hiero-website
Install required npm dependencies:
npm install
Start the Hugo development server with live reloading:
npm run start
Open your browser and visit:
http://localhost:1313/
To preview draft blog posts:
hugo server --buildDrafts
To generate a production-ready build:
npm run build