web-report/service/config.ts
2023-08-21 15:36:10 +08:00

13 lines
213 B
TypeScript

export const PORT = 3001
export const DB_CONFIG = {
// 地址
host: 'localhost',
// 用户名
user: 'root',
// 密码
password: '123456',
// 数据库名
database: 'app_report',
}