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