Deploys a Middleman built site to BitBalloon
Add this to the Gemfile of the repository of your middleman site:
gem 'middleman-bitballoon'
And then execute:
$ bundle install
$ middleman deploy [--build-before]
Activate and configure middleman-bitballoon in your config.rb:
activate :bitballoon do |bitballoon|
bitballoon.token = ENV["BB_TOKEN"]
bitballoon.site = "my-bitballoon-site.bitballoon.com"
# Optional: always run a build before deploying
bitballoon.build_before = true
end
git checkout -b my-new-feature
)git commit -am 'Add some feature'
)git push origin my-new-feature
)