diff --git a/db/db.js b/db/db.js index f0757f6c..5beab183 100644 --- a/db/db.js +++ b/db/db.js @@ -2,7 +2,7 @@ const { Sequelize } = require('sequelize'); require('dotenv').config(); const URI = process.env.MYSQL_ADDON_URI; - +console.log(URI); const sequelize = new Sequelize(URI, { dialect: 'mysql', logging: false }); //The below is for local connection