1

我只是将我的 repo 克隆到我的服务器中并为它创建了一个虚拟主机。

但是我不断得到:

ActionView::Template::Error (application.css isn't precompiled):

我已经执行了RAILS_ENV=development bundle exec rake assets:precompile

而且我仍然在 apache2 error.log 中遇到相同的错误,当我尝试访问我的站点时,我只看到:

We're sorry, but something went wrong.

We've been notified about this issue and we'll take a look at it shortly.

有任何想法吗?

谢谢!

4

1 回答 1

1

在 config/environments/development.rb 文件中添加以下行

config.assets.manifest = Rails.root.join("public/assets")

并重新启动服务器并检查。

如果你得到 esspectator.git 没有签出。

然后尝试运行bundle install。如果没有解决,请尝试运行bundle install --deployment

于 2013-03-28T15:40:37.760 回答