Runs autoscale requests every minute to the Heroku app of your choice. See Heroku autoscale gem to setup your app for autoscaling.
heroku create --stack cedar
heroku config:add AUTOSCALE_URL=<your autoscale URL (e.g.: http://www.example.com/autoscale/123456789)>
heroku config:add GMAIL_DOMAIN=<your domain (e.g.: example.com)>
heroku config:add GMAIL_USERNAME=<your email (e.g.: [email protected])>
heroku config:add GMAIL_PASSWORD=<your password (e.g.: foo1234)>
heroku config:add EXC_RECIPIENTS=<recipients for exceptions notification (e.g.: [email protected])>
git push heroku master
heroku scale web=0
heroku scale worker=1