credintials

This commit is contained in:
Egor Matveev
2021-11-06 23:27:44 +03:00
parent 627153001d
commit 13b56c5678
3 changed files with 4 additions and 4 deletions

View File

@@ -82,7 +82,7 @@ DATABASES = {
"ENGINE": "django.db.backends.postgresql_psycopg2",
"NAME": "sprint",
"USER": "postgres",
"PASSWORD": "password",
"PASSWORD": os.getenv("DB_PASSWORD", "password"),
"HOST": os.getenv("DB_HOST", "0.0.0.0"),
"PORT": 5432,
}