Configure env variables

Hi,

In my application, the users are allowed to configure env vars of the application, such as TIMEZONE. Currently, what I did is to rewrite the whole settings.js file to change the variable. This works but is there a better way of doing this instead of rewriting the settings.js?

Thank you!

This is quite loaded and not enough info for me to give any real direction

Can you explain how you have allowed users (via what interface/what process) can your users change env vars?

Also, on your particular example of users changing TIMEZONE, I am uncertain why you would permit a user (client) to modify the backend (server) timezone. (There is likely a better pattern here)

In what way have you rewritten the whole settings.js file?

Are your users allowed to access the node-red editor? Do they have deploy permissions?

Hi,

I have a simple web interface that accepts users' input of the env variables. One user could have multiple devices located at different locations, so they are allowed to change the serial number and timezone etc. which are defined in the settings.js.

Users are not allowed to touch the settings.js directly, but only through that form. When a user submit the form, the backend code will import settings.js, overwrite the process.env.xx and write them into settings.js using fs.

Users are not allowed to access the node-red editor, the backend will re-deploy node-red if the env vars are saved successfully.

Hope that could clarify. Thanks

Assuming that node-red is running under linux [Edit: and using systemd] then if you add a line to the node-red startup script defining the environment variable EnvironmentFile pointing to a file, for example
EnvironmentFile=/home/nodereduser/environment
then node-red will pick up env vars from there. Using that method would mean that you only need to write to that file and restart node-red, rather than modifiying settings.js

[Edit: In fact the standard systemd startup script already includes a similar line, which you can adjust if necessary to specify where you want the file]

If you are running under Windows then you could modify settings.js to read in the environment file directly rather than using the startup script.

The installer script for Debian already adds this line to the systemd script /lib/systemd/system/nodered.service, so if you start node-red with sudo systemctl [start|enable] nodered or by node-red-start environment variables declared in that file be available in Node-red.

However, starting Node-red with node-red at the command line does not use the systemd script and the variables are not expressed within Node-red.

It isn't quite that line, but similar.

I believe that if the EnvironmentFile env var is defined then node red will use that whether it is started with systemd or not, though I have not tested that.

You are right.
Currently the script adds this line (for username pi)
EnvironmentFile=-/home/pi/.node-red/environment but if the server has had Node-red on it for a long time the file may instead contain
EnvironmentFile=-/home/pi/.node-red/environmentFile (I think)

Don't know the significance of the hyphen at the start!

I just tried; it didn't, though I may have mistyped something.

 ls -l $EnvironmentFile
-rw-r--r-- 1 pi pi 84 Mar 31 02:38 /home/pi/.node-red/environment

ps I think I once suggested that any environment variable file processed at startup should be logged just as the settings file and context store are.

Thanks for testing that. I have corrected my original post accordingly.

This works surprisingly well with docker, by adding arg --env-file .env to docker run command. Unfortunately I found no similar equivalent when running container in azure with az container create.