我正在尝试使用 Korma 并将其设置为我的 Luminus 项目。Korma 为 Postgresql 提供了以下帮助程序:
;; how exactly should I pass the connection string here?
;; in particular, for production env.
(def pg (postgres ..))
(defdb korma-db db)
(defdb prod (postgres {:db "korma"
:user "korma"
;;.....
我怎样才能并且应该以某种方式利用profiles.clj
我有 PG 的测试和开发连接字符串的文件来设置 Korma?
如果是这样,在profiles.clj
没有“生产”连接字符串的情况下,我应该添加它还是什么?