Skip to content

Commit

Permalink
Hardcoded postgres password to test workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
cxrxixs committed May 11, 2024
1 parent 9387f44 commit bcfeb7e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions core/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,9 +42,9 @@
else:
DB_NAME = os.environ.get("DB_NAME") or os.environ.get("POSTGRES_DB")
DB_USER = os.environ.get("DB_USER") or os.environ.get("POSTGRES_USER")
DB_PASSWORD = os.environ.get("DB_PASSWORD") or os.environ.get(
"POSTGRES_PASSWORD"
)
# DB_PASSWORD = os.environ.get("DB_PASSWORD") or os.environ.get(
# "POSTGRES_PASSWORD")
DB_PASSWORD = "postgres"
DB_HOST = os.environ.get("DB_HOST") or "localhost"
DB_PORT = os.environ.get("DB_PORT") or "5432"
REDIS_HOST = os.environ.get("REDIS_HOST")
Expand Down

0 comments on commit bcfeb7e

Please sign in to comment.