forked from yoone/API
1
0
Fork 0

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

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

View File

@ -15,12 +15,11 @@ export default {
typeorm: { typeorm: {
dataSource: { dataSource: {
default: { default: {
host: '13.212.62.127', host: 'localhost',
port: "3306", port: "23306",
username: 'root', username: 'root',
password: 'Yoone!@.2025', password: '12345678',
database: 'inventory_v2', database: 'inventory_v2',
synchronize: true,
}, },
}, },
}, },