Skip to content
This repository was archived by the owner on May 5, 2023. It is now read-only.

Latest commit

 

History

History
25 lines (15 loc) · 634 Bytes

File metadata and controls

25 lines (15 loc) · 634 Bytes

Flatpak.org website

To set up middleman locally on Fedora:

dnf install ruby rubygems rubygem-bundler rubygem-json

In the git checkout, do a bundle install. This installs all the needed modules in their appropriate vesions.

Add the middleman binary location (probably ~/bin) to $PATH.

To run a local web server to test the site:

bundle exec middleman server

Edit the haml/scss files and commit your changes, pushing to origin/source.

Then, to deploy your changes:

bundle exec middleman build
bundle exec middleman deploy

This will push the site from ./build into origin/master branch.