Small middleman site for http://brentscheibelhut.com
If you're implementing a feature, please implement your feature on a separate branch then open a pull request on GitHub. The master branch should always be production ready code.
$ git clone https://github.com/bscheibe/sdotcom
$ cd sdotcom
$ bundle install
$ bundle exec middleman s
Point your browser to http://localhost:4567
source
: Pretty much 99% of your changes will be in this directory. It contains all the haml, scss and javascript.data
: Yaml formatted data for meta data
You can deploy to production by running
$ git checkout master
$ rake production heroku:push
There are one staging app; staging
. You can deploy code to it's
environment for QA purposes by running:
$ git checkout my-feature-branch
$ rake staging heroku:push:force
Run the specs with:
$ rake spec