forked from yoone/API
fix(config): 将数据库配置更改为本地开发环境
更新数据库连接配置为本地开发环境,包括主机、端口和密码 移除自动同步数据库的配置项
This commit is contained in:
parent
2d2ba67f0c
commit
c1ecebb341
|
|
@ -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,
|
||||
},
|
||||
},
|
||||
},
|
||||
|
|
|
|||
Loading…
Reference in New Issue