This website is mainly being written in Markdown, not HTML. How? Hugo comes in clutch, turning .md files to HTML websites.

One cool auto-deployment script

This website is automatically being shipped to the Internet with one simple PowerShell script that I run after I make some changes. This is what the script does:

  1. Copies all of the content from my Obsidian vault to the Hugo’s project folder.
  2. Builds the Hugo project.
  3. Stages, commits and pushes the changes with git to the GitHub repository.

GitHub with Vercel handles the website’s deployment to the Net.

Workflow

I love how fast I can make changes and share it to the world.

If I need to make a new post, the workflow involves 2 simple steps:

  1. Create a new note in the Obsidian vault.
  2. Run the PowerShell script.

That’s it. That’s all what I need to do and I love it.

Special credits go to NetworkChuck for this idea.