Configuration
Once the system has been installed and the environment variables have been added to the .env.deploy
file, you can start configuring the system to begin using it.
Currently, the system is intended to be tested by system administrators. In future versions, usage will be extended to other roles.
The following steps are only necessary if you want to add new users
-
Access the Documentation: Go to
http://localhost:3001/docs
and register as a user using the Sign Up endpoint.Figure 1. API Documentation
-
Check Registered Users: Retrieve your username and encrypted password from the list of registered users.
-
Edit Configuration File: Navigate to the
./node-red
directory created during the system installation and open thesettings.js
file. Enter your username and password in the following section:...
httpNodeAuth: {user:"USERNAME",pass:"HASHED_PASSWORD"},
adminAuth: {
type: "credentials",
users: [{
username: "USERNAME",
password: "HASHED_PASSWORD",
permissions: "*"
}]
},
... -
Start Using STATUS: Begin utilizing the system!
By following these steps, you'll be able to set up and start using the system effectively. For any issues or further configurations, please refer to the system documentation or contact the support team.