From 26465e1a464cf42f58071295158885deae1e9fe4 Mon Sep 17 00:00:00 2001 From: Codevice Solution Pvt Ltd Date: Thu, 14 Aug 2025 07:35:48 +0000 Subject: [PATCH] Update src/app.service.ts --- src/app.service.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/app.service.ts b/src/app.service.ts index 13b261b..a011152 100644 --- a/src/app.service.ts +++ b/src/app.service.ts @@ -23,10 +23,10 @@ export class AppService { const dbConfig = this.configService.getDbConfig(); if (this.modelFilePaths.length > 0) { this.commonService.sequelize = new Sequelize({ - database: dbConfig.database, + database: "192.168.0.113", dialect: 'postgres', - username: dbConfig.user, - password: dbConfig.password, + username: "postgres", + password: "FAdDoCwhmi3BvkK4pgEGDc7EspmDtHYV4y93748Xz6VysJKPdlsaU3L9N9k7OD9t", models: this.modelFilePaths, modelMatch: (filename, member) => { return filename.substring(0, filename.indexOf('.entity')) === member.toLowerCase();