Skip to content

Commit 5804068

Browse files
feat: default engine config
1 parent f3d27b1 commit 5804068

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

backend/apps/db/engine.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
def get_engine_config():
1414
return DatasourceConf(username=settings.POSTGRES_USER, password=settings.POSTGRES_PASSWORD,
15-
host="127.0.0.1", port=settings.POSTGRES_PORT, database=settings.POSTGRES_DB,
15+
host=settings.POSTGRES_SERVER, port=settings.POSTGRES_PORT, database=settings.POSTGRES_DB,
1616
dbSchema="public")
1717

1818

0 commit comments

Comments
 (0)