Rails在本地工作正常,但在heroku中没有

时间:2013-02-13 09:46:32

标签: ruby-on-rails heroku

我为root创建了一个自定义页面并在routes.rb中相应更改。我在使用git之前删除了public / index.html文件,但该应用程序仍然在heroku中查找public / index.html文件。该应用有效本地很好,但问题是在heroku中部署。请建议一些解决方案?我的Gemfile包含

source 'https://rubygems.org'
gem 'rails', '3.2.11'
group :development do
  gem 'sqlite3', '1.3.5'
end
group :assets do
  gem 'sass-rails','3.2.4'
  gem 'coffee-rails', '3.2.2'
  gem 'uglifier', '1.2.3'
end
gem 'jquery-rails'
gem 'thin'

我在我的应用程序中没有使用数据库。控制器只是对json字符串进行一些计算。

1 个答案:

答案 0 :(得分:4)

我相信你已经使用过:

git add .
git commit -m "blabla"

但是,git add .不会查找已删除的文件,因此public/index.html仍然存在。

您必须使用git add -u来包含已删除的文件。

或者,您可以使用git add -A,相当于git add .git add -u

编辑 - 一步一步地发表评论:

git add -A                #add everything (including deleted files)
git commit -m "blabla"    #commit it
git push                  #push from your pc to your git repository
git push heroku           #push from your git repository to heroku

如果您删除了public/index.html文件,则必须正常工作。

编辑将以下内容添加到您的gemfile中:

group :production do
  gem 'pg'
end

比:

RAILS_ENV=production bundle exec rake assets:precompile
git add -A
git commit -m "blabla"
git push
git push heroku