Currently, we are not loading environment variables, which result in the application crashing when attempting to run it. Error: <img width="1166" alt="Screen Shot 2019-11-23 at 17 36 58" src="https://user-images.githubusercontent.com/2086717/69486244-dcd1e000-0e17-11ea-96a8-a98f477a189f.png"> To fix this error you should load the environment variables prior to using them. Copy + paste the following code in this [line](https://github.com/CUNYTechPrep/project-starter/blob/authentication/api/app.js#L11). ``` // load environment variables declared in your .env file require('dotenv').config() ```