This repo contains the source files for my home website, which is statically generated via Hugo.
Install Hugo Extended. On windows you can use choco:
choco install go -y
choco install hugo-extended -yOnce installed, you can run the project via
hugo server -DPages can be added via the Hugo New command
hugo new posts/my-new-blog-post.mdRun
hugo --minifyto build the website. It'll output a full website for you in the ./public folder.
Copy the entire contents of the ./public folder to the root folder in your web server.
You can recompile the Tailwind CSS from the root directory by running:
npm run buildYou will want to do this before committing any changes to github.
Run
git submodule update --remote --merge