This site is built with Jekyll.
The project uses:
- Ruby 3.4.10, selected by
.ruby-version - Bundler 2.6.9, recorded in
Gemfile.lock - Jekyll 4.4.1 or later within the
Gemfileconstraint
Install Ruby 3.4.10 using a Ruby version manager, rbenv for example.
From the project directory, run:
rbenv install 3.4.10
rbenv local 3.4.10
ruby --versionThe last command should report Ruby 3.4.10.
Install the Bundler version recorded in the lockfile, then install the locked gems:
gem install bundler -v 2.6.9
bundle --version
bundle installVerify the resolved Jekyll version:
bundle exec jekyll --versionThe current lockfile resolves Jekyll 4.4.1. To intentionally update dependencies after changing Gemfile, run:
bundle updateGenerate the static site in _site/:
bundle exec jekyll build --destination _siteThe _site/ directory is generated output and should not be edited directly.
Start a local server with live reload:
bundle exec jekyll serve --livereloadOpen http://localhost:4000/arks.github.io/ in a browser.