update .env.local

This commit is contained in:
Parsa Nazer
2025-01-11 20:44:10 +03:30
parent d415c0c389
commit 5a8b7bc5eb
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -6,7 +6,7 @@ DB_NAME = 'hshop'
DB_USER = 'byeto'
DB_PASSWORD = 'vuhbyq-cypMu0-sirbon'
DB_HOST = 'db'
DB_PORT = 5434
DB_PORT = 5432
SECRET_KEY = '2h&gmi54wqauwqht48l-9c)r6_67_(oe_$ll%(+xz%u#)+of@d'
# email stuff
EMAIL_BACKEND = ''
+1 -1
View File
@@ -50,7 +50,7 @@ if not DEBUG:
'USER': os.getenv("DB_USER"),
'PASSWORD': os.getenv("DB_PASSWORD"),
'HOST': os.getenv("DB_HOST"),
'PORT': int(os.getenv("DB_PORT")),
'PORT': os.getenv("DB_PORT"),
}
}
else: