如何将ElephantSQL与TypeORM连接?

时间:2019-12-15 18:30:15

标签: sql database postgresql cloud typeorm

文档中仅是显示与本地数据库的连接的示例:

y = str(i) + str(x)

我想连接基于在线的ElephantSQL,但找不到解决方案。

1 个答案:

答案 0 :(得分:0)

我能够连接,这是我的解决方案。

{
  "name": "default",
  "type": "postgres",
  "url": <URL>, 
  "synchronize": true,
  "logging": true,
  "entities": ["src/entity/*.*"]
}

URL是url字符串,类似于“ postgres:// xxxxx:5432 / xxxx”