ruby-on-rails – Heroku上的数据库连接

前端之家收集整理的这篇文章主要介绍了ruby-on-rails – Heroku上的数据库连接前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
哇我已经被困在这一天了几天.我无法连接到Heroku上的database.yml.我在雪松和ruby1.9.2.我的开发人员和测试dbs是sqlite3,而prod db是postgresql来应对Cedar规则.
这是我的ruby脚本中的代码
Rails.env.production? ? (env = "production") : (env = "development")
dbconfig = YAML::load(File.open('config/database.yml'))[env]
ActiveRecord::Base.establish_connection(dbconfig)

一切在当地都很好,但当我推到Heroku,我得到:@H_502_6@

ArgumentError: Syntax error on line 17,col 0: `adapter = uri.scheme'
from /usr/local/lib/ruby/1.9.1/syck.rb:135:in `load'

看来Heroku不喜欢我的database.yml.这是一个概述:@H_502_6@

development:
  adapter: sqlite3
  database: db/development.sqlite3
  pool: 5
  timeout: 5000

test:
  adapter: sqlite3
  database: db/test.sqlite3
  pool: 5
  timeout: 5000

production:
  adapter: postgresql
  encoding: unicode
  database: foo
  port: 5432
  host: foobar.amazonaws.com
  username: foo
  password: bar

解决方法

首先,Heroku用自己的Heroku特定版本覆盖你的config / database.yml.这就是Heroku如何自动将您的应用程序连接到自己的postgresql数据库.要告诉Heroku你自己的posgresql数据库,你应该设置正确的 config variables,你也可以从你的存储库中的config / database.yml中省略生产数据库,因为Heroku会忽略它.

其次,config / database.yml文件是YAML文件的ERB模板.您必须首先通过评估Ruby(ERB)运行文件内容,然后通过YAML运行输出.@H_502_6@

猜你在找的Ruby相关文章