Development/NestJS
NestJS + TypeORM + Migration 설정
src/database/database.service.ts import { ConfigService } from '@nestjs/config'; import { TypeOrmModuleOptions } from '@nestjs/typeorm'; export class DataBaseService { constructor(private config: ConfigService) {} public getTypeOrmConfig(): TypeOrmModuleOptions { return { type: 'mariadb', host: this.config.get('DB_HOST'), port: +this.config.get('DB_PORT'), username: this.config.get('DB_USERNAME'..
2021. 2. 1. 22:29
최근댓글