I just ran into this post from knolleary
One way of setting environment variables is in your settings.js
file.
The following will set the env var MY_ENV_VAR
:
process.env.MY_ENV_VAR = "Hello World";
You can add lines like that to the top of your settings file.
Does it mean I need to force them all in settings.js ?