Setup Github Pages with Hugo static site generator and Visual Studio Code
Setup Github Pages with Hugo static site generator and Visual Studio Code
- Create special GitHub repo for GitHub-Pages and clone it in VSC workspace
- Go to repo folder on local machine and create Hugo site. Use –force since the .git files are already there
- add theme Ananke
git submodule add https://github.com/theNewDynamic/gohugo-theme-ananke.git themes/ananke
echo theme = \"ananke\" >> config.toml
- change publication directory to “docs” to align with settings in GitHub pages
echo publishDir = \"docs\" >> config.toml
- test Hugo
hugo new posts/hello-world.md
- preview on localhost
- publish on localhost
- setup github pages
- on github.com in your repository: Settings > Pages:
- Source: Branch master, Folder docs
- in the docs folder, create an empty
.nojekyll
file to prevent jekyll workflow on github pages
- committing changes
git add -A
git commit -am "Hello World and .nojekyll"
git push
Workflow new page
hugo new posts/name.md
- edit content
- publish
git add -A
git commit -am "message"
git push
Workflow new publication
- publish current version:
hugo
git add -A
git commit -am "message"
git push