How To: Deploy to Heroku - Smashing/smashing GitHub Wiki
Since Dashing is simply a Sinatra Rack app under the hood, deploying is a breeze. It takes around 30 seconds to do :)
bundle install
git init
git add .
git commit -m "My beautiful dashboard"
heroku apps:create myapp
git push heroku master
Dashing relies on a history file to maintain persistence across restarts. Heroku filesystems are read-only.
When your dyno idles down, because it's a free dyno, the contents of memory should be safe in the history.yml
file -- but on Heroku they are nowhere.
If you'd like to use Dashing as a storage layer for your application, it is suggested to implement the techniques described in #330 (Redis To Go Heroku addon should be installed).