From 27ded95214cf9f2fb8cc6a60235862af62a65f8f Mon Sep 17 00:00:00 2001 From: Alp Tuna Date: Tue, 7 Nov 2023 15:35:21 +0300 Subject: [PATCH] Update app.module.ts --- app/backend/src/app.module.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/backend/src/app.module.ts b/app/backend/src/app.module.ts index e2ab4ab0..6c3ef496 100644 --- a/app/backend/src/app.module.ts +++ b/app/backend/src/app.module.ts @@ -15,9 +15,9 @@ import { Option } from './poll/entities/option.entity'; imports: [ TypeOrmModule.forRoot({ type: 'postgres', - host: 'localhost', + host: '172.17.0.2', port: 5432, - password: 'pass', + password: 'password', username: 'postgres', entities: [User, Poll, Tag, Option], database: 'postgres',