Skip to content

Commit d98e9e0

Browse files
authored
Merge pull request #18 from BigBitBusInc/fix/change-db-endpoint
Fixed pg endpoint
2 parents 50a3ae2 + 31aee7d commit d98e9e0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

code/app-code/api/todo-python-django/config/settings.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@
100100
'ENGINE': 'django.db.backends.postgresql',
101101
'NAME': os.environ.get('POSTGRES_DB', 'todo-postgres-database'),
102102
'USER': os.environ.get('POSTGRES_USER', 'postgres'),
103-
'HOST': os.environ.get('POSTGRES_HOST', 'postgres_host.pg'),
103+
'HOST': os.environ.get('POSTGRES_HOST', 'pgdb-postgresql.pg'),
104104
'PASSWORD': os.environ.get('POSTGRES_PASSWORD', 'B1gB1tBu5'),
105105
'PORT': os.environ.get('POSTGRES_PORT', '5432')
106106
}

0 commit comments

Comments
 (0)