postgres-employee
PORT=3000
SECRET=SECRET
DB_NAME='emp_management'
DB_PASS='Password'
DB_USER='postgres'
DB_HOST='localhost'\
const { Sequelize } = require('sequelize');
require('dotenv').config();
const sequelize = new Sequelize(
process.env.DB_NAME, // DB name...
gautammakavana.hashnode.dev10 min read