This commit is contained in:
livindra 2026-04-28 20:43:49 +07:00
parent 6caed78d35
commit b0bc661d42
1 changed files with 1 additions and 1 deletions

View File

@ -13,7 +13,7 @@ from pymysql import MySQLError
load_dotenv()
DB_HOST = os.environ.get('DB_HOST', 'localhost')
DB_PORT = int(os.environ.get('DB_PORT', '3306'))
DB_PORT = os.environ.get('DB_PORT', '3306')
DB_USER = os.environ.get('DB_USER', 'root')
DB_PASSWORD = os.environ.get('DB_PASSWORD', '')
DB_NAME = os.environ.get('DB_NAME', 'deteksi_pmk')