├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Dockerfile_example ├── LICENSE ├── README.md ├── conf ├── config.json └── node-red-config.js ├── package-catalog.json ├── package.json ├── start.bat ├── start.sh ├── theme ├── favicon.ico ├── logo_dev.png ├── logo_prod.png ├── logo_quali.png ├── viseo.js ├── viseo_dev.css ├── viseo_login.png ├── viseo_prod.css └── viseo_quali.css ├── update_modules.sh ├── update_projects.js └── web.config /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGRP/node-red-viseo-bot/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGRP/node-red-viseo-bot/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGRP/node-red-viseo-bot/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dockerfile_example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGRP/node-red-viseo-bot/HEAD/Dockerfile_example -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGRP/node-red-viseo-bot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGRP/node-red-viseo-bot/HEAD/README.md -------------------------------------------------------------------------------- /conf/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGRP/node-red-viseo-bot/HEAD/conf/config.json -------------------------------------------------------------------------------- /conf/node-red-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGRP/node-red-viseo-bot/HEAD/conf/node-red-config.js -------------------------------------------------------------------------------- /package-catalog.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGRP/node-red-viseo-bot/HEAD/package-catalog.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGRP/node-red-viseo-bot/HEAD/package.json -------------------------------------------------------------------------------- /start.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGRP/node-red-viseo-bot/HEAD/start.bat -------------------------------------------------------------------------------- /start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGRP/node-red-viseo-bot/HEAD/start.sh -------------------------------------------------------------------------------- /theme/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGRP/node-red-viseo-bot/HEAD/theme/favicon.ico -------------------------------------------------------------------------------- /theme/logo_dev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGRP/node-red-viseo-bot/HEAD/theme/logo_dev.png -------------------------------------------------------------------------------- /theme/logo_prod.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGRP/node-red-viseo-bot/HEAD/theme/logo_prod.png -------------------------------------------------------------------------------- /theme/logo_quali.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGRP/node-red-viseo-bot/HEAD/theme/logo_quali.png -------------------------------------------------------------------------------- /theme/viseo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGRP/node-red-viseo-bot/HEAD/theme/viseo.js -------------------------------------------------------------------------------- /theme/viseo_dev.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGRP/node-red-viseo-bot/HEAD/theme/viseo_dev.css -------------------------------------------------------------------------------- /theme/viseo_login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGRP/node-red-viseo-bot/HEAD/theme/viseo_login.png -------------------------------------------------------------------------------- /theme/viseo_prod.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGRP/node-red-viseo-bot/HEAD/theme/viseo_prod.css -------------------------------------------------------------------------------- /theme/viseo_quali.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGRP/node-red-viseo-bot/HEAD/theme/viseo_quali.css -------------------------------------------------------------------------------- /update_modules.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGRP/node-red-viseo-bot/HEAD/update_modules.sh -------------------------------------------------------------------------------- /update_projects.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGRP/node-red-viseo-bot/HEAD/update_projects.js -------------------------------------------------------------------------------- /web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGRP/node-red-viseo-bot/HEAD/web.config --------------------------------------------------------------------------------