我对hood
的文档存在一些问题,没有关于config.json
中应该包含的内容的解释。
我试过了:
{
"development": {
"driver": "postgres",
"source": "my_development"
}
}
但我有错误:
hood db:migrate
2014/06/23 12:53:14 applying migrations...
panic: missing "=" after "my_development" in connection info string"
最佳答案
从hood文档中:
因此,driver
值应为postgresql
(以您的示例为例),并且source
值应为key=value
列表或完整的连接URI(如postgresql documentation中所述)。
一些示例(来自here):
postgres://pqgotest:password@localhost/pqgotest?sslmode=verify-full
user=pqgotest dbname=pqgotest sslmode=verify-full