├── .docker └── Dockerfile.alpine ├── .github ├── dependabot.yml └── workflows │ ├── dependabot-auto-merge.yml │ ├── docker-build.yml │ ├── docker-test.yml │ └── prepare-release.yml ├── .gitignore ├── LICENSE ├── README.md ├── package.json ├── rootfs ├── defaults │ ├── avahi-daemon.conf │ └── avahi-http.service └── etc │ ├── cont-init.d │ ├── 40-dbus-avahi │ └── 55-node-red │ ├── fix-attrs.d │ └── 55-node-red │ └── services.d │ ├── avahi │ └── run │ ├── dbus │ └── run │ └── nodered │ └── run └── strategy.js /.docker/Dockerfile.alpine: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickm53/node-red-omekit/HEAD/.docker/Dockerfile.alpine -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickm53/node-red-omekit/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/dependabot-auto-merge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickm53/node-red-omekit/HEAD/.github/workflows/dependabot-auto-merge.yml -------------------------------------------------------------------------------- /.github/workflows/docker-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickm53/node-red-omekit/HEAD/.github/workflows/docker-build.yml -------------------------------------------------------------------------------- /.github/workflows/docker-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickm53/node-red-omekit/HEAD/.github/workflows/docker-test.yml -------------------------------------------------------------------------------- /.github/workflows/prepare-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickm53/node-red-omekit/HEAD/.github/workflows/prepare-release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickm53/node-red-omekit/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickm53/node-red-omekit/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickm53/node-red-omekit/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickm53/node-red-omekit/HEAD/package.json -------------------------------------------------------------------------------- /rootfs/defaults/avahi-daemon.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickm53/node-red-omekit/HEAD/rootfs/defaults/avahi-daemon.conf -------------------------------------------------------------------------------- /rootfs/defaults/avahi-http.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickm53/node-red-omekit/HEAD/rootfs/defaults/avahi-http.service -------------------------------------------------------------------------------- /rootfs/etc/cont-init.d/40-dbus-avahi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickm53/node-red-omekit/HEAD/rootfs/etc/cont-init.d/40-dbus-avahi -------------------------------------------------------------------------------- /rootfs/etc/cont-init.d/55-node-red: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickm53/node-red-omekit/HEAD/rootfs/etc/cont-init.d/55-node-red -------------------------------------------------------------------------------- /rootfs/etc/fix-attrs.d/55-node-red: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickm53/node-red-omekit/HEAD/rootfs/etc/fix-attrs.d/55-node-red -------------------------------------------------------------------------------- /rootfs/etc/services.d/avahi/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickm53/node-red-omekit/HEAD/rootfs/etc/services.d/avahi/run -------------------------------------------------------------------------------- /rootfs/etc/services.d/dbus/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickm53/node-red-omekit/HEAD/rootfs/etc/services.d/dbus/run -------------------------------------------------------------------------------- /rootfs/etc/services.d/nodered/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickm53/node-red-omekit/HEAD/rootfs/etc/services.d/nodered/run -------------------------------------------------------------------------------- /strategy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickm53/node-red-omekit/HEAD/strategy.js --------------------------------------------------------------------------------