From 9fc1bedb0ce6f50303337fbe81b923acdf5ca9c2 Mon Sep 17 00:00:00 2001 From: zhuotianyuan Date: Sat, 10 Jan 2026 14:27:08 +0800 Subject: [PATCH] =?UTF-8?q?fix(config):=20=E5=B0=86=E6=95=B0=E6=8D=AE?= =?UTF-8?q?=E5=BA=93=E9=85=8D=E7=BD=AE=E6=9B=B4=E6=94=B9=E4=B8=BA=E6=9C=AC?= =?UTF-8?q?=E5=9C=B0=E5=BC=80=E5=8F=91=E7=8E=AF=E5=A2=83?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 更新数据库连接配置为本地开发环境,包括主机、端口和密码 移除自动同步数据库的配置项 --- src/config/config.local.ts | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/src/config/config.local.ts b/src/config/config.local.ts index 67785b5..d64e2ba 100644 --- a/src/config/config.local.ts +++ b/src/config/config.local.ts @@ -15,12 +15,11 @@ export default { typeorm: { dataSource: { default: { - host: '13.212.62.127', - port: "3306", + host: 'localhost', + port: "23306", username: 'root', - password: 'Yoone!@.2025', + password: '12345678', database: 'inventory_v2', - synchronize: true, }, }, },