Hugo Site Setup using Up Business Theme

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): ...

July 20, 2025 · 5 min · Faisal Darbar
Hugo Site Setup using PaperModest Theme

Hugo Site Setup using PaperModest Theme

🌱 Introduction: The Journey So Far This project started with me setting up a Hugo blog using the PaperMod theme, developed on a Linux environment and deployed via Cloudflare Pages. I then moved to WSL (Windows Subsystem for Linux) for better flexibility but ran into high I/O issues with VS Code when working across the Windows (/mnt/c/) and WSL filesystems. To resolve this, I moved all project files fully into the WSL-native Linux filesystem. ...

July 8, 2025 · 5 min · Faisal Darbar