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