Skip to content

How to: Deploy to Heroku

pushmatrix edited this page Oct 26, 2012 · 1 revision

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.

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