Personal site.
- Jekyll/Ruby doesnt work well on Windows. Use WSL.
- A Gemfile is like a package.json, but using Bundler.
bundle install
to install all packages listed in theGemfile
.bundle add
to add a new package toGemfile
.bundle exec jekyll serve
to run a Jekyll server on localhost. It will be available on localhost even when running WSL.code .
inside a WSL terminal to open the project in Windows VSCode using theRemote Development
extension.