1. sudo gem install heroku
2. heroku create myapp
http://myapp.heroku.com/ | git@heroku.com:myapp.git
3. rails myapp -d mysql
git init
git add .
git commit -am 'initial import'
4. git remote add heroku git@heroku.com:myapp.git
git push heroku master
5. heroku rake db:migrate
6. heroku open
7. that's it
8. more about on [url]http://heroku.com[/url]
2. heroku create myapp
http://myapp.heroku.com/ | git@heroku.com:myapp.git
3. rails myapp -d mysql
git init
git add .
git commit -am 'initial import'
4. git remote add heroku git@heroku.com:myapp.git
git push heroku master
5. heroku rake db:migrate
6. heroku open
7. that's it
8. more about on [url]http://heroku.com[/url]