fix: config postgres + create admin

This commit is contained in:
safouane-bazzi
2026-04-16 22:01:32 +02:00
committed by Safouane Bazzi
parent 91361bf6ee
commit 4c9aec7cfc
3 changed files with 7 additions and 8 deletions

View File

@@ -2,10 +2,10 @@ import psycopg2
from werkzeug.security import generate_password_hash
DB_HOST = "localhost"
DB_PORT = "5432"
DB_PORT = "5433"
DB_NAME = "ecocharge"
DB_USER = "ecocharge_user"
DB_PASSWORD = "ecocharge_password"
DB_USER = "postgres"
DB_PASSWORD = "Safouane2005#"
USERNAME = "admin"
PLAIN_PASSWORD = "admin123"