https://www.alexandraulsh.com/
My personal website.
This websites uses the same versions of Ruby (v2.7.1) and Jekyll (v3.9.0) as GitHub Pages.
Install rbenv with homebrew and optionally set Ruby v2.7.1 as the default:
brew install rbenv
rbenv install 2.7.1
rbenv global 2.7.1Set up rbenv in your shell:
echo 'eval "$(rbenv init -)"' >> ~/.zshrc
source ~/.zshrcUpgrade bundler to v2.2.8:
gem install bundler:2.2.8Install Jekyll v3.9.0:
gem install jekyll:3.9.0After installing dependencies, to install this website locally:
git clone [email protected]:alulsh/alulsh.github.io.git
cd alulsh.github.io
bundle installRun jekyll serve --watch then visit http://127.0.0.1:4000/ in a web browser.