Originally written on 2020-01-26. DEV's displayed publication date reflects this archive migration.
Simpler than I thought to set up a jekyll static website up and running with github pages:
clone a repo created with the name:
<githubUserName>.github.io
$ sudo snap install ruby --classic
$ gem install bundler
- Create Jekyll in the repo directory
$ jekyll new .
# Creates a Jekyll site in the current directory
- Configurations: open
Gemfilewhich was just created and follow the instructions
$ bundle updateif gem 'rouge' can't be found$ bundle exec jekyll serveRun the server locally and edit the content before committing and pushing the ropogit add, commit, push

Top comments (0)