From b0bc661d422af54e378e48bdff6dea17f1d88070 Mon Sep 17 00:00:00 2001 From: livindra Date: Tue, 28 Apr 2026 20:43:49 +0700 Subject: [PATCH] setup_db --- setup_db.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup_db.py b/setup_db.py index 053140a..ff17aed 100644 --- a/setup_db.py +++ b/setup_db.py @@ -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')