PostgreSQL установка и подключение
Установка: brew install postgresql@17
Запуск: brew services start postgresql@17
Остановка: brew services stop postgresql@17
Проверка статуса: brew services list | grep postgresql
Подключени:
12345678910111213141516171819202122import { Module } from '@nestjs/common';import { AppController } from './app.controller';import { AppService } from './app.service';@Module({imports: [TypeOrmModule.forRoot({type: 'postgres',host: 'localhost',port: 5432,username: 'kirill',password: 'root',database: 'online_store',autoLoadEntities: true,synchronize: true,}),],controllers: [AppController],providers: [AppService],})export class AppModule {}