From 4d8209f3bcd6e6679fe8d925d57a558eb0e25f18 Mon Sep 17 00:00:00 2001 From: BillMills Date: Sat, 22 Jun 2019 13:08:51 -0400 Subject: [PATCH] mssql->postgres --- bulletin-board-app/config/dbConfig.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/bulletin-board-app/config/dbConfig.js b/bulletin-board-app/config/dbConfig.js index e4208aa..08719f0 100644 --- a/bulletin-board-app/config/dbConfig.js +++ b/bulletin-board-app/config/dbConfig.js @@ -1,11 +1,11 @@ var dbConfig = module.exports = {}; dbConfig.connection = { - username: 'sa', + username: 'postgres', password: 'DockerCon!!!', host: 'bb-db', - post: 1433, - dbName: 'BulletinBoard' + post: 5432, + dbName: 'postgres' }; dbConfig.pool = {