cool-admin-api/config/config.local.ts
2019-09-28 17:41:43 +08:00

25 lines
472 B
TypeScript

import { EggAppConfig, PowerPartial } from 'egg';
export default () => {
const config: PowerPartial<EggAppConfig> = {};
config.cluster = {
listen: {
port: 7001,
hostname: '0.0.0.0',
},
};
config.typeorm = {
client: {
type: 'mysql',
host: '127.0.0.1',
port: 3306,
username: 'root',
password: '123123',
database: 'cool-admin',
synchronize: true,
logging: true,
},
};
return config;
};