This repo contains the code that builds the static site of EcrivAI's blog posts. The site content is built using Hugo and saved in the docs/
folder for hosting with GitHub Pages.
- After cloning, get the submodule content (the Hugo theme is contained in a submodule):
git submodule update --init --recursive
- Now you can make your desired changes and build a local version of the site to see how your changes look:
hugo server -D
- Once satisfied, build the site static files:
hugo -D -d docs
- When you're satisfied, commit and push the changes of the main repo and GitHub pages will update the site with the new contents of
docs/