123456789101112131415161718 |
- import { EggAppConfig, PowerPartial } from 'egg';
- export default () => {
- const config: PowerPartial<EggAppConfig> = {
- mysql: {
- client: {
- host: 'localhost',
- port: '3306',
- user: 'tanjiawei',
- password: '123456',
- database: 'evaluation',
- },
- app: true,
- agent: true,
- },
- };
- return config;
- };
|