Personal website built with Jekyll and hosted on GitHub Pages.
-
You need to have
rbenvinstalled on your system. -
You need to run the following commands to install Ruby and dependencies:
# Get the Ruby version from .ruby-version
RUBY_VERSION=$(cat .ruby-version)
# Install and set the Ruby version
rbenv install $RUBY_VERSION
rbenv local $RUBY_VERSION
# You may need to do initialize rbenv shell integration:
rbenv init
# Install dependencies
sudo gem install bundler
bundle installThe site will be available at http://localhost:4000 after running the following command:
bundle exec jekyll serve