Skip to content

Commit f94720f

Browse files
committed
refactor
1 parent eba19e8 commit f94720f

File tree

3 files changed

+8
-5
lines changed

3 files changed

+8
-5
lines changed

README.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
# hestiacp-nodered
1+
# hcpp-nodered
22
A plugin for Hestia Control Panel (via [hestiacp-pluginable](https://github.com/virtuosoft-dev/hestiacp-pluginable)) that enables hosting a Node-RED instance. With this plugin installed, a new Quick Installer option will appear. User accounts can host their own Node-RED instance either in the root domain or as a subfolder installation. For instance, it is possible to run WordPress in the root domain while having Node-RED installed on the same domain in a subfolder (i.e. https://example.com/nodered); a perfect setup for creating solutions using [WPN](https://code.gdn/wpn).
33

44
 
55
> :warning: !!! Note: this repo is in progress; when completed, a release will appear in the release tab.
66
77
## Installation
8-
HestiaCP-NodeRED requires an Ubuntu based installation of [Hestia Control Panel](https://hestiacp.com) in addition to an installation of [HestiaCP-Pluginable](https://github.com/virtuosoft-dev/hestiacp-pluginable) *and* [HesitaCP-NodeApp](https://github.com/virtuosoft-dev/hcpp-nodeapp) to function; please ensure that you have first installed both Pluginable and NodeApp on your Hestia Control Panel before proceeding. Switch to a root user and simply clone this project to the /usr/local/hestia/plugins folder. It should appear as a subfolder with the name `nodered`, i.e. `/usr/local/hestia/plugins/nodered`.
8+
HCPP-NodeRED requires an Ubuntu based installation of [Hestia Control Panel](https://hestiacp.com) in addition to an installation of [HestiaCP-Pluginable](https://github.com/virtuosoft-dev/hestiacp-pluginable) *and* [HCPP-NodeApp](https://github.com/virtuosoft-dev/hcpp-nodeapp) to function; please ensure that you have first installed both Pluginable and NodeApp on your Hestia Control Panel before proceeding. Switch to a root user and simply clone this project to the /usr/local/hestia/plugins folder. It should appear as a subfolder with the name `nodered`, i.e. `/usr/local/hestia/plugins/nodered`.
99

1010
First, switch to root user:
1111
```
@@ -16,7 +16,7 @@ Then simply clone the repo to your plugins folder, with the name `nodered`:
1616

1717
```
1818
cd /usr/local/hestia/plugins
19-
git clone https://github.com/virtuosoft-dev/hestiacp-nodered nodered
19+
git clone https://github.com/virtuosoft-dev/hcpp-nodered nodered
2020
```
2121

2222
Note: It is important that the destination plugin folder name is `nodered`.
@@ -27,6 +27,7 @@ Be sure to logout and login again to your Hestia Control Panel as the admin user
2727
sudo -s
2828
cd /usr/local/hestia/plugins/nodered
2929
./install
30+
touch "/usr/local/hestia/data/hcpp/installed/nodered"
3031
```
3132

3233
## Support the creator

nodered.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
*
66
* @version 1.0.0
77
* @license GPL-3.0
8-
* @link https://github.com/steveorevo/hestiacp-nodebb
8+
* @link https://github.com/virutosoft-dev/hcpp-nodered
99
*
1010
*/
1111

plugin.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
<?php
22
/**
33
* Plugin Name: NodeRED
4-
* Plugin URI: https://github.com/steveorevo/hestiacp-nodered
4+
* Plugin URI: https://github.com/virtuosoft-dev/hcpp-nodered
55
* Description: NodeRED is a plugin for HestiaCP that allows you to Quick Install a Node-RED instance.
6+
* Version: 1.0.0
7+
*
68
*/
79

810
// Register the install and uninstall scripts

0 commit comments

Comments
 (0)