我最近部署了我的Ruby on Rails应用程序,在我的机器上本地运行它到VPS服务器。 “管理”部分无法使用用户名和密码。它在本地工作,但在线,我无法进入管理我的用户详细信息。该应用程序的其余部分似乎工作正常,而不是管理员。
在我的db / seeds.rb中,我有:
Admin.create(:email => "admin@admin.com", :password => "admin_password")
#unless Rails.env.production?
# 1000.times do
# Factory.create(:user)
# end
#end
categories_file = File.join(Rails.root, 'config', 'categories.txt')
if File.exists?(categories_file)
File.open(categories_file, 'r') do |f|
while category = f.gets
Category.create(:name => category)
end
end
end
为了让它正常工作,我需要做些什么吗?感谢。
答案 0 :(得分:0)
有人跑了:
RAILS_ENV=production bundle exec rake db:seed
来自服务器上的生产实例(无论是什么),现在它正在运行。