Quickstart
Install the Heroku gem file:
sudo gem install heroku
Upload your public key:
heroku keys:add
Enter your Heroku credentials.
Email: you@example.com
Password: ********
Set up your app to use Git (if you aren't already using it):
cd myapp
git init
git add .
git commit -m "first commit"
Create an app:
heroku create
Created http://sharp-autumn-42.com/ | git@heroku.com:sharp-autumn-42.git
Git remote heroku added
Deploy your code:
git push heroku master
Run migrations (or other bootstrap tasks):
heroku rake db:migrate
Open the deployed app in your browser:
heroku open
Win!
After you finish oooing and aahing, try reading the docs.