@things-factory/operato-board 6.0.75 → 6.0.78
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.
|
@@ -45,5 +45,17 @@ module.exports = {
|
|
|
45
45
|
password: 'abcd1234',
|
|
46
46
|
synchronize: true,
|
|
47
47
|
logging: true
|
|
48
|
+
},
|
|
49
|
+
scheduler: {
|
|
50
|
+
/* Name to be used for setting client's "application" properties when registering a schedule */
|
|
51
|
+
application: 'operato-board',
|
|
52
|
+
/* Base endpoint to be used for setting "callback" properties when registering a schedule */
|
|
53
|
+
callbackBase: 'http://app:3000',
|
|
54
|
+
/*
|
|
55
|
+
Scheduler service endpoint
|
|
56
|
+
caution) endpoint for "localhost" has some problem.
|
|
57
|
+
https://github.com/node-fetch/node-fetch/issues/1624
|
|
58
|
+
*/
|
|
59
|
+
endpoint: 'http://scheduler:9902'
|
|
48
60
|
}
|
|
49
61
|
}
|
|
@@ -19,6 +19,7 @@ services:
|
|
|
19
19
|
depends_on:
|
|
20
20
|
- postgres
|
|
21
21
|
- mosquitto
|
|
22
|
+
- scheduler
|
|
22
23
|
postgres:
|
|
23
24
|
image: postgres:13.2
|
|
24
25
|
container_name: db-operato-board
|
|
@@ -35,3 +36,11 @@ services:
|
|
|
35
36
|
ports:
|
|
36
37
|
- 1883:1883
|
|
37
38
|
- 9001:9001
|
|
39
|
+
|
|
40
|
+
scheduler:
|
|
41
|
+
image: hatiolab/schevt-mgr:latest
|
|
42
|
+
container_name: scheduler
|
|
43
|
+
volumes:
|
|
44
|
+
- ./config.yaml:/app/config.yaml
|
|
45
|
+
ports:
|
|
46
|
+
- '9902:9902'
|
package/package.json
CHANGED
|
@@ -1,11 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@things-factory/operato-board",
|
|
3
|
-
"version": "6.0.
|
|
3
|
+
"version": "6.0.78",
|
|
4
4
|
"main": "dist-server/index.js",
|
|
5
5
|
"browser": "client/index.js",
|
|
6
6
|
"things-factory": true,
|
|
7
7
|
"author": "heartyoh <heartyoh@hatiolab.com>",
|
|
8
8
|
"description": "App for dashboarding",
|
|
9
|
+
"license": "MIT",
|
|
9
10
|
"publishConfig": {
|
|
10
11
|
"access": "public",
|
|
11
12
|
"@things-factory:registry": "https://registry.npmjs.org"
|
|
@@ -78,40 +79,40 @@
|
|
|
78
79
|
"@operato/shell": "^1.0.1",
|
|
79
80
|
"@operato/styles": "^1.0.0",
|
|
80
81
|
"@operato/utils": "^1.0.1",
|
|
81
|
-
"@things-factory/apptool-ui": "^6.0.
|
|
82
|
-
"@things-factory/auth-ui": "^6.0.
|
|
83
|
-
"@things-factory/board-service": "^6.0.
|
|
84
|
-
"@things-factory/board-ui": "^6.0.
|
|
85
|
-
"@things-factory/context-ui": "^6.0.
|
|
86
|
-
"@things-factory/export-ui": "^6.0.
|
|
87
|
-
"@things-factory/fav-base": "^6.0.
|
|
88
|
-
"@things-factory/font-base": "^6.0.
|
|
89
|
-
"@things-factory/form-ui": "^6.0.
|
|
90
|
-
"@things-factory/help": "^6.0.
|
|
91
|
-
"@things-factory/i18n-base": "^6.0.
|
|
92
|
-
"@things-factory/import-ui": "^6.0.
|
|
93
|
-
"@things-factory/integration-base": "^6.0.
|
|
94
|
-
"@things-factory/integration-msgraph": "^6.0.
|
|
95
|
-
"@things-factory/integration-notification": "^6.0.
|
|
96
|
-
"@things-factory/integration-openai": "^6.0.
|
|
97
|
-
"@things-factory/integration-ui": "^6.0.
|
|
98
|
-
"@things-factory/layout-ui": "^6.0.
|
|
99
|
-
"@things-factory/more-ui": "^6.0.
|
|
100
|
-
"@things-factory/notification": "^6.0.
|
|
101
|
-
"@things-factory/oauth2-client": "^6.0.
|
|
102
|
-
"@things-factory/offline-ui": "^6.0.
|
|
82
|
+
"@things-factory/apptool-ui": "^6.0.78",
|
|
83
|
+
"@things-factory/auth-ui": "^6.0.78",
|
|
84
|
+
"@things-factory/board-service": "^6.0.78",
|
|
85
|
+
"@things-factory/board-ui": "^6.0.78",
|
|
86
|
+
"@things-factory/context-ui": "^6.0.78",
|
|
87
|
+
"@things-factory/export-ui": "^6.0.78",
|
|
88
|
+
"@things-factory/fav-base": "^6.0.78",
|
|
89
|
+
"@things-factory/font-base": "^6.0.78",
|
|
90
|
+
"@things-factory/form-ui": "^6.0.78",
|
|
91
|
+
"@things-factory/help": "^6.0.78",
|
|
92
|
+
"@things-factory/i18n-base": "^6.0.78",
|
|
93
|
+
"@things-factory/import-ui": "^6.0.78",
|
|
94
|
+
"@things-factory/integration-base": "^6.0.78",
|
|
95
|
+
"@things-factory/integration-msgraph": "^6.0.78",
|
|
96
|
+
"@things-factory/integration-notification": "^6.0.78",
|
|
97
|
+
"@things-factory/integration-openai": "^6.0.78",
|
|
98
|
+
"@things-factory/integration-ui": "^6.0.78",
|
|
99
|
+
"@things-factory/layout-ui": "^6.0.78",
|
|
100
|
+
"@things-factory/more-ui": "^6.0.78",
|
|
101
|
+
"@things-factory/notification": "^6.0.78",
|
|
102
|
+
"@things-factory/oauth2-client": "^6.0.78",
|
|
103
|
+
"@things-factory/offline-ui": "^6.0.78",
|
|
103
104
|
"@things-factory/operato-license-checker": "^3.1.0",
|
|
104
|
-
"@things-factory/pdf": "^6.0.
|
|
105
|
-
"@things-factory/print-service": "^6.0.
|
|
106
|
-
"@things-factory/print-ui": "^6.0.
|
|
107
|
-
"@things-factory/resource-ui": "^6.0.
|
|
108
|
-
"@things-factory/scene-google-map": "^6.0.
|
|
109
|
-
"@things-factory/setting-ui": "^6.0.
|
|
110
|
-
"@things-factory/system-ui": "^6.0.
|
|
105
|
+
"@things-factory/pdf": "^6.0.78",
|
|
106
|
+
"@things-factory/print-service": "^6.0.78",
|
|
107
|
+
"@things-factory/print-ui": "^6.0.78",
|
|
108
|
+
"@things-factory/resource-ui": "^6.0.78",
|
|
109
|
+
"@things-factory/scene-google-map": "^6.0.78",
|
|
110
|
+
"@things-factory/setting-ui": "^6.0.78",
|
|
111
|
+
"@things-factory/system-ui": "^6.0.78"
|
|
111
112
|
},
|
|
112
113
|
"devDependencies": {
|
|
113
|
-
"@things-factory/board-test": "^6.0.
|
|
114
|
-
"@things-factory/builder": "^6.0.
|
|
114
|
+
"@things-factory/board-test": "^6.0.78",
|
|
115
|
+
"@things-factory/builder": "^6.0.78"
|
|
115
116
|
},
|
|
116
|
-
"gitHead": "
|
|
117
|
+
"gitHead": "6d1b076baae617ee1c1df25e176c21d7b1a18e61"
|
|
117
118
|
}
|