diff --git a/src/libs/db/postgres.js b/src/libs/db/postgres.js
index 2e16df38c760a208e13d79b4bfb0090534d23d0b..f63f95b703857799d564228fbbec69b603bed191 100644
--- a/src/libs/db/postgres.js
+++ b/src/libs/db/postgres.js
@@ -1,7 +1,22 @@
 const Sequelize = require('sequelize');
 
-const DATABASE_URL = 'postgres://postgres:postgres@localhost:5432/postgres'
+const dbConfig = {
+    database: 'simcaq_adm',
+    username: 'simcaq',
+    password: 'simcaq',
+    host: '200.17.202.97', 
+    port: 5432,        
+    dialect: 'postgres',
+  };
 
-const db = new Sequelize(DATABASE_URL)
+const db = new Sequelize(dbConfig)
+
+db.authenticate()
+    .then(() => {
+      console.log('Connection has been established successfully.');
+    })
+    .catch((err) => {
+      console.error('Unable to connect to the database:', err);
+    });
 
 module.exports = db
\ No newline at end of file