Server/Node

    [Nest.js] TypeOrm, Postgresql 적용

    PostgreSql 설치 Brew 명령어 brew install postgresql TypeOrm 명령어 npm install @nestjs/typeorm typeorm pg DB Driver 설치 명령어 npm install ts-node -g Nest.js 세팅 문서 import { Module } from '@nestjs/common'; import { TypeOrmModule } from '@nestjs/typeorm'; @Module({ imports: [ TypeOrmModule.forRoot({ type: 'mysql', host: 'localhost', port: 3306, username: 'root', password: 'root', database: 'test', entities: [..