Skip to content

How to: Deploy to Heroku

pushmatrix edited this page Dec 7, 2012 · 5 revisions

Since Dashing is simply a Sinatra Rack app under the hood, deploying is a breeze. It takes around 30 seconds to do :)

###Create a git repo for your project, and add your files.

bundle install
git init
git add .
git commit -m "My beautiful dashboard"

###Create the application on Heroku

heroku apps:create myapp

Push the application to Heroku

git push heroku master
Clone this wiki locally