Skip to content

Commit

Permalink
Update settings.py
Browse files Browse the repository at this point in the history
  • Loading branch information
berat-samli authored Mar 17, 2024
1 parent c8303b9 commit 62eb7fb
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions API/API/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,11 +82,11 @@
DATABASES = {
"default": {
"ENGINE": "django.db.backends.postgresql",
"NAME": 'transcendenceDB',
"USER": 'postgres',
"PASSWORD": '123',
"HOST": '127.0.0.1',
"PORT": '5432',
"NAME": os.getenv('PG_DB'),
"USER": os.getenv('PG_USER'),
"PASSWORD": os.getenv('PG_PASSWORD'),
"HOST": os.getenv('PG_HOST'),
"PORT": os.getenv('PG_PORT'),
}
}

Expand Down

0 comments on commit 62eb7fb

Please sign in to comment.