in the Gemfile (if you have datatables)
group :development do
gem 'sqlite3'
end
group :productions do
gem 'pg'
end
then bundle install without production
git init
git add .
git commit -m "first"
git status (working clean directory)
heroku apps:create
git push heroku master
heroku run rake db:migrate
heroku open