
Hugo Site Setup using Up Business Theme
✅ Prerequisites Make sure you have the following installed: Hugo (extended version) Always update your packages before an install. sudo apt update Download and install the extended version of Hugo wget https://github.com/gohugoio/hugo/releases/download/v0.147.9/hugo_extended_0.147.9_linux-amd64.deb sudo apt install ./hugo_extended_0.147.9_linux-amd64.deb Git sudo apt update sudo apt install git Configure Git: git config --global user.name "Your Name" git config --global user.email "your@example.com" Node.js and npm Instead of using apt, which installs outdated versions, use NodeSource to install the current LTS version (more stable for dev work): ...