ALTER USER 유저명 WITH PASSWORD '비밀번호'
패키지 설치
npm i @nestjs/typeorm typeorm pg
(마지막 pg는 postgresql이라는 뜻)
app.module.ts에 TypeOrmModule 설정
import { TypeOrmModule } from '@nestjs/typeorm'
@Module({
TypeOrmModule.forRoot({
type: 'postgres',
host: 'localhost',
port: 5432,
username: 'username',
password: 'test',
database: 'database',
synchronize: true,
logging: true,
})
})