我的Rails应用程序上的Bootstrap 3.0无法正常工作

时间:2014-11-14 12:07:58

标签: twitter-bootstrap heroku

我已按照此处给出的步骤进行操作:

Installing Bootstrap 3 on Rails App

我已将文件从bootstrap文件夹复制到我的应用程序文件夹。

它在我的本地主机上工作正常:3000但是当我将它部署到heroku服务器并打开它到我的手机时它不会像移动响应一样。 我的演示应用的URL: appu.herokuapp.com

请回复

1 个答案:

答案 0 :(得分:0)

您必须预先编译资产,供Heroku使用。在您的终端中运行:

RAILS_ENV=production rake assets:precompile

更多相关信息:Heroku Assets

然后一如既往地使用git管理并上传到heroku

  

git add -A

git commit -m "message"

git push heroku master