My personal webpage.
Link: https://alee08.github.io
Follow this guide to set up your Ruby development environment.
Install Ruby (tested with 3.1.0):
rbenv install 3.1.0
Install bundler (matches Gemfile.lock):
gem install bundler -v 2.3.12
Then:
bundle install
To build the Jekyll website:
bundle exec jekyll build
To serve:
bundle exec jekyll serve
Deploys are handled by GitHub Actions on every push to main.
First-time setup (GitHub UI):
- Go to Settings → Pages.
- Under Source, select GitHub Actions.
- Save.
Then publish with:
git push origin main
Legacy (gh-pages via SSH):
bundle exec rake publish