Skip to content

Commit

Permalink
Directly add password to DATABASE config
Browse files Browse the repository at this point in the history
  • Loading branch information
cxrxixs committed May 11, 2024
1 parent bcfeb7e commit b5b590e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion core/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,8 @@
"ENGINE": "django.db.backends.postgresql",
"NAME": DB_NAME,
"USER": DB_USER,
"PASSWORD": DB_PASSWORD,
# "PASSWORD": DB_PASSWORD,
"PASSWORD": "postgres",
"HOST": DB_HOST,
"PORT": DB_PORT,
}
Expand Down

0 comments on commit b5b590e

Please sign in to comment.