Post: Hello World!
Hello World!
This is my homelab documentation project. Feel free to use the details here for your own projects.
Day 1. Documentation:
I found that Markdown would be the easiest to work with, reference: MD Cheatsheet
And hosting would be ideally free, given that this is a personal project and not funded, so I settled on Pages
Sticking to a minimalist theme I’ll be using theme: minimal-mistakes
On initial deployment I was following jekyllrb But found that a gem was missing post install, details discussed with another user here: discussion
The fix was to run the following before running Jekyll:
bundle add webrick
And of course, from the root of the local site, to initialize everything I would run:
bundle install
and to run it locally for development, before pushing changes to the cloud:
bundle exec jekyll serve s
And the rest is magic!