src아래에 configs 폴더 생성
configs아래에 typeorm.config.ts 생성
import { TypeOrmModuleOptions } from "@nestjs/typeorm";
export const typeORMConfig : TypeOrmModuleOptions = {
type: 'mysql',
host: 'localhost',
port: 3306,
username: '',
password: '',
database: '',
entities: [__dirname + '/../**/*.entity.{js,ts}'],
synchronize: true
}