Source for www.rakefire.io, the Rakefire marketing site. Built with Bridgetown and deployed to GitHub Pages from main.
- Ruby (see
.ruby-version) - Bridgetown 2.x (
bridgetown-feed,bridgetown-sitemap,bridgetown-seo-tag) - Liquid templates in
src/ - SCSS in
_sass/compiled viasass-embeddedtosrc/css/style.css
bundle install
bundle exec bridgetown serveThen open http://localhost:4000.
Production build:
BRIDGETOWN_ENV=production bundle exec bridgetown buildOutput goes to output/.
src/css/style.css is checked in as the byte-exact output of the legacy Jekyll/libsass build, so the deployed stylesheet matches the pre-Bridgetown site. If you change anything under _sass/, regenerate it:
bundle exec rake css:buildNote: sass-embedded (Dart Sass) emits a slightly different stylesheet than libsass did against this Bootstrap fork — diff the result before committing.
.github/workflows/pages.yml builds on every push to main and publishes to GitHub Pages (custom domain: www.rakefire.io). No manual deploy step.