mirror of
https://github.com/apgzs/cool-admin-api.git
synced 2025-04-05 11:18:39 +08:00
25 lines
452 B
TypeScript
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;
|
|
};
|