├── .dockerignore ├── .github ├── dependabot.yml └── workflows │ ├── node.js.yml │ └── stale.yml ├── .gitignore ├── .npmrc ├── CONTRIBUTING.md ├── DCO1.1.txt ├── Dockerfile ├── Dockerfile-tools ├── LICENSE ├── README.md ├── bluemix-settings.js ├── cloudantStorage.js ├── defaults ├── README.md └── flow.json ├── index.js ├── nodes └── README.md ├── package.json ├── public ├── css │ ├── simplegrid.css │ └── style.css ├── favicon.ico ├── first-run.html ├── images │ ├── progress-bar.png │ ├── progress-left.png │ ├── progress-middle.png │ ├── progress-o-bar.png │ ├── progress-o-left.png │ ├── progress-o-middle.png │ ├── progress-o-right.png │ ├── progress-right.png │ ├── spin.svg │ └── title-wave.png └── index.html ├── red.js ├── routers └── health.js └── scripts ├── curl_test.sh ├── experience_test.sh └── node_red.py /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/node-red-app/HEAD/.dockerignore -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/node-red-app/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/node.js.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/node-red-app/HEAD/.github/workflows/node.js.yml -------------------------------------------------------------------------------- /.github/workflows/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/node-red-app/HEAD/.github/workflows/stale.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/node-red-app/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/node-red-app/HEAD/.npmrc -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/node-red-app/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /DCO1.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/node-red-app/HEAD/DCO1.1.txt -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/node-red-app/HEAD/Dockerfile -------------------------------------------------------------------------------- /Dockerfile-tools: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/node-red-app/HEAD/Dockerfile-tools -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/node-red-app/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/node-red-app/HEAD/README.md -------------------------------------------------------------------------------- /bluemix-settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/node-red-app/HEAD/bluemix-settings.js -------------------------------------------------------------------------------- /cloudantStorage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/node-red-app/HEAD/cloudantStorage.js -------------------------------------------------------------------------------- /defaults/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/node-red-app/HEAD/defaults/README.md -------------------------------------------------------------------------------- /defaults/flow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/node-red-app/HEAD/defaults/flow.json -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/node-red-app/HEAD/index.js -------------------------------------------------------------------------------- /nodes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/node-red-app/HEAD/nodes/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/node-red-app/HEAD/package.json -------------------------------------------------------------------------------- /public/css/simplegrid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/node-red-app/HEAD/public/css/simplegrid.css -------------------------------------------------------------------------------- /public/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/node-red-app/HEAD/public/css/style.css -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/node-red-app/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/first-run.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/node-red-app/HEAD/public/first-run.html -------------------------------------------------------------------------------- /public/images/progress-bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/node-red-app/HEAD/public/images/progress-bar.png -------------------------------------------------------------------------------- /public/images/progress-left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/node-red-app/HEAD/public/images/progress-left.png -------------------------------------------------------------------------------- /public/images/progress-middle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/node-red-app/HEAD/public/images/progress-middle.png -------------------------------------------------------------------------------- /public/images/progress-o-bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/node-red-app/HEAD/public/images/progress-o-bar.png -------------------------------------------------------------------------------- /public/images/progress-o-left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/node-red-app/HEAD/public/images/progress-o-left.png -------------------------------------------------------------------------------- /public/images/progress-o-middle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/node-red-app/HEAD/public/images/progress-o-middle.png -------------------------------------------------------------------------------- /public/images/progress-o-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/node-red-app/HEAD/public/images/progress-o-right.png -------------------------------------------------------------------------------- /public/images/progress-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/node-red-app/HEAD/public/images/progress-right.png -------------------------------------------------------------------------------- /public/images/spin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/node-red-app/HEAD/public/images/spin.svg -------------------------------------------------------------------------------- /public/images/title-wave.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/node-red-app/HEAD/public/images/title-wave.png -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/node-red-app/HEAD/public/index.html -------------------------------------------------------------------------------- /red.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/node-red-app/HEAD/red.js -------------------------------------------------------------------------------- /routers/health.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/node-red-app/HEAD/routers/health.js -------------------------------------------------------------------------------- /scripts/curl_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/node-red-app/HEAD/scripts/curl_test.sh -------------------------------------------------------------------------------- /scripts/experience_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/node-red-app/HEAD/scripts/experience_test.sh -------------------------------------------------------------------------------- /scripts/node_red.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/node-red-app/HEAD/scripts/node_red.py --------------------------------------------------------------------------------