zksu
/
API
forked from yoone/API
1
0
Fork 0

fix(config): 将数据库配置更改为本地开发环境

更新数据库连接配置为本地开发环境,包括主机、端口和密码
移除自动同步数据库的配置项
This commit is contained in:
zhuotianyuan 2026-01-10 14:27:08 +08:00 committed by 黄珑
parent 0f79b7536a
commit 9fc1bedb0c
1 changed files with 3 additions and 4 deletions

View File

@ -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,
},
},
},