Rails3部署到heroku

gem install heroku
rails new myapp
cd myapp
由于heroku只支持PostgreSQL
所以要再Gemfile里加入
gem 'sqlite3'
gem 'pg'
然后执行
bundle install
发布项目到github
git init
git add.
git commit - a - m 'init my project'
heroku create -- stack cedar ///// heroku create如果已经存在stack

git push heroku master

可用命令:
heroku logs
heroku ps
heroku run console

rake命令
heroku run rake db:migrate
heroku run rake - T

启动服务
gem 'thin'

 

from:http://www.sevenmike.com/2011/06/29/deploy-rails3-project-on-heroku/

你可能感兴趣的:(rails3)