Heroku上的数据库连接

时间:2011-09-08 17:11:29

标签: ruby-on-rails ruby heroku yaml

哇我好几天都被困在这个上面了。我在Heroku上连接到database.yml时遇到问题。我在Cedar和ruby 1.9.2。我的dev和test 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时,我得到:

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。这是一个概述:

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

1 个答案:

答案 0 :(得分:27)

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

其次,config/database.yml文件是YAML文件的 ERB模板。在通过YAML运行输出之前,必须首先通过Evaluated Ruby(ERB)运行文件内容。