cool-admin-api/config/config.prod.ts
2019-09-28 16:12:42 +08:00

25 lines
466 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: 'test',
synchronize: true,
logging: true,
},
};
return config;
};