Setup dotenv
- dotenv is where we will store the db connection string
- It allows you to load different values into your app based on the environment such as development, production, etc.
Install dotenv
npm install dotenv
Create environment file
touch .env
Commit
git add .
git commit -m 'Adds dotenv package'
Next
Setup folders