🪴 rhack

Search

Search IconIcon to open search

Hugo and Obsidian

Last updated Oct 22, 2022

For nearly one year I have been using Obsidian as my PKM (Personal Knowledge Management) tool. For my blog and website I was using Ghost for a while and I really liked it. However I LOVE the simplicity of Obsidian and having .md files and not a proprietary format. I am also keen to keep using Markdown for writing my posts and in the end this led me to using the setup as in the above architecture diagram.

I will maybe write more about this in the future, but for now, I just want to make sure I don’t forget how this is setup and below’s commands:

# Testing local website

1
make serve

# Generate

1
hugo -D

# Upload and Publish

1
2
3
git add *
git commit -m 'Did a change'
git push