我有一个rails应用程序部署到Heroku,我不知道为什么,但我无法在localhost上查看该应用程序,也无法访问heroku run rails generate []
创建的文件。这种情况下的gem是activeadmin,但我想知道如何获取从该命令生成的文件。
运行rails generate active_admin:install
时出现的错误
/Users/michaelscaria/.rvm/gems/ruby-1.9.3-p385/gems/activerecord- 3.2.11/lib/active_record/connection_adapters/postgresql_adapter.rb:1208:in `initialize': FATAL: database "crowdery_development" does not exist (PG::Error)
您需要在gemfile中添加gem"pg"。
group :production do
gem "pg"
end
在安装捆绑包之前,您需要使用命令安装"postgresql"
sudo apt-get install postgresql
之后做
bundle install --without production
事实证明,我没有使用与创建应用程序时相同的数据库名称。