Skip to content

Latest commit

 

History

History
32 lines (27 loc) · 1.33 KB

File metadata and controls

32 lines (27 loc) · 1.33 KB

The Toopher Dev Blog is being hosted on GitHub Pages using the GitHub Jekyll integration.

Built on September 1, 2023 using Ruby 2.7.4 and Jekyll 4.3.2. See pages build and deployment #4. The site was using out-of-date dependencies that caused build errors, so we had to update things. The site lost some styling from before, though it is good enough.

Resources

Gemfile

gem "jekyll", "~> 3.9.3"

Basic workflow

  • Install Ruby 2.7.4
  • Install Bundler
  • Install dependencies
  • Build project
rbenv install 2.7.4
rbenv local 2.7.4
ruby -v
gem install bundler
bundle install
bundle exec jekyll serve
open http://localhost:4000