I am using an .env file to hold environment variables for the server. This works if I run the server with foreman start. But it doesn\'t work with nodemon.
I would
In Three steps
# .env ====== PORT=5000 WHO_AM_I="Who Knows"
"dev": "nodemon -r dotenv/config src/app.js"
You can access the your defined variables using > process.env.varible_name