A simple way of creating Sinatra applications on Heroku
I’ve just pushed Sinatra project template that could be used on Heroku environment. Here is a usage case:
git clone git@github.com:dashin/sinatra-heroku-template.git mv sinatra-heroku-template YOUR_PROJECT_NAME heroku create YOUR_PROJECT_NAME cd YOUR_PROJECT_NAME git remote add heroku git@heroku.com:YOUR_PROJECT_NAME.git git push heroku master git remote rm origin
Any comments are highly appreciated!