美文网首页
heroku配置rails程序

heroku配置rails程序

作者: 豹纹奶嘴草上飞 | 来源:发表于2015-01-28 22:58 被阅读0次

省略部分

rails程序和heroku安装省略

预备工作

rails里config/environments/production.rb

config.assets.compile = true

gemfile中

group :development do
  gem 'mysql2'
end
gem 'pg'

之后bundle install
然后在自己的shell中输入

heroku create

生成keroku 的remote
可以用heroku apps:rename xxxxxx对项目进行改名字
之后通过

git push heroku master

提交后它会自动设置,进行bundle install 、预编译等操作。
等提示结束后还要进行migrate一下。

heroku run rake db:migrate

最后shell中

heroku open

相关文章

网友评论

      本文标题:heroku配置rails程序

      本文链接:https://www.haomeiwen.com/subject/kbhlxttx.html