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

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