You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have a process running via pm2 in node 24 using a dotenvx run -- pm2 start ecosystem.config.js --env production
I have an environmental variable I need to change.
a) I edit .env (I am both renaming the var AND changing the value)
b) I stop my process pm2 stop ecosystem.config.js --env production
c) I restart the process (same command as above)
The environmental var does not change in process.env. I still see the old name of the var with the old value and the newly named one is nowhere to be found when I just log process.env in my process.