When i install home assistant on raspberry pi and run nodered, nodered points to lacalhost:1880/ .
If i configure httpadminroot = "/ Admin", it will not be able to use sidebar to enter the nodered Web UI.
Then there will be a conflict with
if (RED.settings.httpAdminRoot === "/") { this.error("Cannot create github-webhook node when httpAdminRoot set to '/'"); this.status(statuses.misconfigured); return; }
The reason why I use node-red-contrib-github-plus is that I want to use nodred to detect the new issues in GitHub to control the color change of studyroom light.
Now it can't be called directly, and I use httpin to fix it.
When i install home assistant on raspberry pi and run nodered, nodered points to lacalhost:1880/ . If i configure httpadminroot = "/ Admin", it will not be able to use sidebar to enter the nodered Web UI.
Then there will be a conflict with
if (RED.settings.httpAdminRoot === "/") { this.error("Cannot create github-webhook node when httpAdminRoot set to '/'"); this.status(statuses.misconfigured); return; }
The reason why I use node-red-contrib-github-plus is that I want to use nodred to detect the new issues in GitHub to control the color change of studyroom light. Now it can't be called directly, and I use httpin to fix it.
I hope you can fix this. thank u.