@5minds/node-red-contrib-processcube 1.0.0 → 1.0.1-develop-0d5345-lz2gdamo
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/Dockerfile
CHANGED
@@ -6,7 +6,7 @@ WORKDIR /src/node-red-contrib-processcube
|
|
6
6
|
|
7
7
|
RUN npm install
|
8
8
|
|
9
|
-
FROM nodered/node-red:
|
9
|
+
FROM nodered/node-red:4.0.2
|
10
10
|
|
11
11
|
WORKDIR /data
|
12
12
|
|
@@ -18,4 +18,5 @@ COPY nodered/package.json package.json
|
|
18
18
|
RUN npm install
|
19
19
|
|
20
20
|
|
21
|
-
ENTRYPOINT ["./node_modules/.bin/node-red", "--flowFile", "/nodered/node-red-contrib-processcube-flows.json",
|
21
|
+
ENTRYPOINT ["./node_modules/.bin/node-red", "--flowFile", "/nodered/node-red-contrib-processcube-flows.json", "--settings", "/nodered/settings.js"]
|
22
|
+
# ENTRYPOINT ["./entrypoint.sh", "--settings", "/nodered/settings.js"]
|
package/docker-compose.yml
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
services:
|
2
2
|
node-red:
|
3
|
-
image: 5minds/node-red:node-red-contrib-processcube
|
3
|
+
image: 5minds/node-red:node-red-contrib-processcube-4
|
4
4
|
build:
|
5
5
|
context: .
|
6
6
|
ports:
|
@@ -9,7 +9,7 @@ services:
|
|
9
9
|
environment:
|
10
10
|
- TZ=Europe/Berlin
|
11
11
|
- ENGINE_URL=http://engine:8000
|
12
|
-
- FLOWS=/nodered/node-red-contrib-processcube-
|
12
|
+
- FLOWS=/nodered/node-red-contrib-processcube-flows__.json
|
13
13
|
volumes:
|
14
14
|
- ./nodered/:/nodered/
|
15
15
|
- ./examples/:/examples/
|
package/nodered/package.json
CHANGED
@@ -7,7 +7,7 @@
|
|
7
7
|
"@5minds/node-red-dashboard-2-processcube-dynamic-form": "^1.0.4",
|
8
8
|
"@5minds/node-red-dashboard-2-processcube-usertask-table": "^1.0.7",
|
9
9
|
"@flowfuse/node-red-dashboard": "^1.11.1",
|
10
|
-
"node-red": "^
|
10
|
+
"node-red": "^4.0.2",
|
11
11
|
"node-red-contrib-inspector": "~1.0.1",
|
12
12
|
"node-red-debugger": "^1.1.1",
|
13
13
|
"openapi-red": "^1.2.5"
|
package/package.json
CHANGED
@@ -34,7 +34,7 @@ module.exports = function (RED) {
|
|
34
34
|
if (this.credentials.clientId && this.credentials.clientSecret) {
|
35
35
|
this.engineClient = new engine_client.EngineClient(this.url);
|
36
36
|
|
37
|
-
engineClient.applicationInfo
|
37
|
+
this.engineClient.applicationInfo
|
38
38
|
.getAuthorityAddress()
|
39
39
|
.then((authorityUrl) => {
|
40
40
|
startRefreshingIdentityCycle(
|