├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── TODO.md ├── bin ├── install-node-red.js └── postinstall.js ├── install.js ├── package.json ├── templates ├── .npmrc ├── README.md ├── data │ ├── LICENSE │ ├── README.md │ ├── envfile.ini │ ├── example-settings.js │ └── package.json └── master │ ├── .eslintrc.js │ ├── .gitignore │ ├── .npmrc │ ├── LICENSE │ ├── README.md │ ├── bin │ └── restartnr.js │ ├── package.json │ ├── scripts │ ├── backup.sh │ ├── backupm.sh │ └── backupw.sh │ └── system │ └── node-red.service └── tilib.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TotallyInformation/alternate-node-red-installer/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TotallyInformation/alternate-node-red-installer/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TotallyInformation/alternate-node-red-installer/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TotallyInformation/alternate-node-red-installer/HEAD/README.md -------------------------------------------------------------------------------- /TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TotallyInformation/alternate-node-red-installer/HEAD/TODO.md -------------------------------------------------------------------------------- /bin/install-node-red.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TotallyInformation/alternate-node-red-installer/HEAD/bin/install-node-red.js -------------------------------------------------------------------------------- /bin/postinstall.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TotallyInformation/alternate-node-red-installer/HEAD/bin/postinstall.js -------------------------------------------------------------------------------- /install.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TotallyInformation/alternate-node-red-installer/HEAD/install.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TotallyInformation/alternate-node-red-installer/HEAD/package.json -------------------------------------------------------------------------------- /templates/.npmrc: -------------------------------------------------------------------------------- 1 | color=always 2 | engine-strict=true 3 | init-license=MIT 4 | -------------------------------------------------------------------------------- /templates/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TotallyInformation/alternate-node-red-installer/HEAD/templates/README.md -------------------------------------------------------------------------------- /templates/data/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TotallyInformation/alternate-node-red-installer/HEAD/templates/data/LICENSE -------------------------------------------------------------------------------- /templates/data/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TotallyInformation/alternate-node-red-installer/HEAD/templates/data/README.md -------------------------------------------------------------------------------- /templates/data/envfile.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TotallyInformation/alternate-node-red-installer/HEAD/templates/data/envfile.ini -------------------------------------------------------------------------------- /templates/data/example-settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TotallyInformation/alternate-node-red-installer/HEAD/templates/data/example-settings.js -------------------------------------------------------------------------------- /templates/data/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TotallyInformation/alternate-node-red-installer/HEAD/templates/data/package.json -------------------------------------------------------------------------------- /templates/master/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TotallyInformation/alternate-node-red-installer/HEAD/templates/master/.eslintrc.js -------------------------------------------------------------------------------- /templates/master/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TotallyInformation/alternate-node-red-installer/HEAD/templates/master/.gitignore -------------------------------------------------------------------------------- /templates/master/.npmrc: -------------------------------------------------------------------------------- 1 | color=always 2 | engine-strict=true 3 | init-license=MIT 4 | -------------------------------------------------------------------------------- /templates/master/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TotallyInformation/alternate-node-red-installer/HEAD/templates/master/LICENSE -------------------------------------------------------------------------------- /templates/master/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TotallyInformation/alternate-node-red-installer/HEAD/templates/master/README.md -------------------------------------------------------------------------------- /templates/master/bin/restartnr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TotallyInformation/alternate-node-red-installer/HEAD/templates/master/bin/restartnr.js -------------------------------------------------------------------------------- /templates/master/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TotallyInformation/alternate-node-red-installer/HEAD/templates/master/package.json -------------------------------------------------------------------------------- /templates/master/scripts/backup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TotallyInformation/alternate-node-red-installer/HEAD/templates/master/scripts/backup.sh -------------------------------------------------------------------------------- /templates/master/scripts/backupm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TotallyInformation/alternate-node-red-installer/HEAD/templates/master/scripts/backupm.sh -------------------------------------------------------------------------------- /templates/master/scripts/backupw.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TotallyInformation/alternate-node-red-installer/HEAD/templates/master/scripts/backupw.sh -------------------------------------------------------------------------------- /templates/master/system/node-red.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TotallyInformation/alternate-node-red-installer/HEAD/templates/master/system/node-red.service -------------------------------------------------------------------------------- /tilib.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TotallyInformation/alternate-node-red-installer/HEAD/tilib.js --------------------------------------------------------------------------------