【发布时间】:2013-06-12 12:14:08
【问题描述】:
我正在使用bulbs 在 Heroku 上设置 Neo4J 应用程序。在本地它运行良好,但是当我在 heroku 上部署它时,它会在以下代码中引发错误部分:
#heroku config:get NEO4J_URL
#http://user:password@instance.ip/
try:
cfg = Config(instance.ip,user,password)
g = Graph(cfg)
except:
return "OOPS! ERROR CONFIGURING GRAPH!"
我该怎么办?
我也试过cfg.set_neo4j_heroku(),但没用。
【问题讨论】: