We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f3d27b1 commit 5804068Copy full SHA for 5804068
backend/apps/db/engine.py
@@ -12,7 +12,7 @@
12
13
def get_engine_config():
14
return DatasourceConf(username=settings.POSTGRES_USER, password=settings.POSTGRES_PASSWORD,
15
- host="127.0.0.1", port=settings.POSTGRES_PORT, database=settings.POSTGRES_DB,
+ host=settings.POSTGRES_SERVER, port=settings.POSTGRES_PORT, database=settings.POSTGRES_DB,
16
dbSchema="public")
17
18
0 commit comments