Welcome to the source code for my own personal web site, which you can find at robgraham.me.
This site is hosted on GitHub Pages so you will need to jump the gh-pages
branch to see the Jekyll source code.
Clone this repository into a dir called robgraham.me
$ git clone https://github.com/altabyte/about-me.git robgraham.me
Switch to the gh-pages
branch
$ git checkout gh-pages
Install the gems listed in Gemfile.
$ bundle install --path=.bundle
Launch the localhost server
$ bundle exec jekyll serve --baseurl '' --port 4040
The site should then be available locally on port 4040 - http://localhost:4040/
Without --baseurl ''
the localhost URL will be
http://localhost:4040/about-me/
The default port for Jekyll is 4000, however NX Server also uses this port so I use port 4040 locally.