gpt4 book ai didi

postgresql - 引擎盖 "config.json"值

转载 作者:IT王子 更新时间:2023-10-29 02:06:01 26 4
gpt4 key购买 nike

我对 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文档:

The driver and source fields are the strings you would pass to the sql.Open(2) function.

所以 driver 的值应该是 postgresql(对于你的例子),而 source 的值应该是 的列表key=value 或完整连接 URI(如 postgresql documentation 中所述)。

一些示例(来自 here):

  • postgres://pqgotest:password@localhost/pqgotest?sslmode=verify-full
  • user=pqgotest dbname=pqgotest sslmode=verify-full

关于postgresql - 引擎盖 "config.json"值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24362362/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com