Not wanting to seem difficult, but......
This example configuration defines a single user called
admin
who has permission to do everything within the editor and has a password ofpassword
. Note that the password is securely hashed using the bcrypt algorithm.
Ok, that's for user admin - as stated.
It then goes on:
To generate a suitable password hash, you can use the
node-red-admin
command-line tool:
node-red-admin hash-pw
The tool will prompt you for the password you wish to use and then print out the hash that can be copied into the settings file.
Alternative, you can run the following command from within the Node-RED install directory:
node -e "console.log(require('bcryptjs').hashSync(process.argv[1], 8));" your-password-here
Yeah, ok.
But where is the username?
Sorry if the answer is obvious, but I'm not seeing it.
Maybe the layout of how it is explained be changed?