-
Notifications
You must be signed in to change notification settings - Fork 1
Open
Description
🚅 Issue 한 줄 요약
app.module.ts
🤷 Issue 세부 내용
import { Module } from '@nestjs/common';
import { TypeOrmModule } from '@nestjs/typeorm';
import { UsersModule } from './login/users.module';
@Module({
imports: [
TypeOrmModule.forRoot({
type: 'postgres',
host: 'localhost',
port: 5432,
username: 'postgres',
password: 'postgres',
database: 'Login',
entities: [__dirname + '/**/*.entity{.ts,.js}'],
synchronize: true,
}),
UsersModule,
],
})
export class AppModule {}
✨ 기대 결과
📸 스크린샷
Metadata
Metadata
Assignees
Labels
No labels