-
-
Notifications
You must be signed in to change notification settings - Fork 193
Mission Control Configuration
Guido edited this page Jul 8, 2020
·
2 revisions
Configuration of Mission Control is inside Node-RED's configuration file settings.js (generally located at ~/.node-red/settings.js.
{
// ...
missionControl: {
dbPath: '/Users/my-user/mission-control',
pluginsPath: '/Users/my-user/mission-control/dist-plugins',
}
}
Name | Type | Required | Description |
---|---|---|---|
dbPath | string | yes | The folder used to store the mission-control.sqlite file. Just the folder. If file doesn't exist it will created a blank one. |
pluginsPath | string | yes | The folder used to store the external plugins |
host | string | yes | The host address (IP or domain). It's used to receive GraphQL subscriptions on the client. If not specified it's defaulted to localhost |
salt | string | no | Salt used to encrypt admin password. It's reccomended to pick up a random a unique value here |
root | string | no | URL of Mission Control. Defaults to /mc |