@things-factory/operato-hub 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.
@@ -47,5 +47,17 @@ module.exports = {
47
47
  password: 'abcd1234',
48
48
  synchronize: true,
49
49
  logging: true
50
+ },
51
+ scheduler: {
52
+ /* Name to be used for setting client's "application" properties when registering a schedule */
53
+ application: 'operato-hub',
54
+ /* Base endpoint to be used for setting "callback" properties when registering a schedule */
55
+ callbackBase: 'http://app:3000',
56
+ /*
57
+ Scheduler service endpoint
58
+ caution) endpoint for "localhost" has some problem.
59
+ https://github.com/node-fetch/node-fetch/issues/1624
60
+ */
61
+ endpoint: 'http://scheduler:9902'
50
62
  }
51
63
  }
@@ -7,7 +7,6 @@ services:
7
7
  depends_on:
8
8
  - app
9
9
  app:
10
- build: .
11
10
  container_name: operato-hub
12
11
  image: hatiolab/operato-hub:latest
13
12
  privileged: true
@@ -19,6 +18,7 @@ services:
19
18
  depends_on:
20
19
  - postgres
21
20
  - mosquitto
21
+ - scheduler
22
22
  postgres:
23
23
  image: postgres:13.2
24
24
  container_name: db-operato-hub
@@ -35,3 +35,11 @@ services:
35
35
  ports:
36
36
  - 1883:1883
37
37
  - 9001:9001
38
+
39
+ scheduler:
40
+ image: hatiolab/schevt-mgr:latest
41
+ container_name: scheduler
42
+ volumes:
43
+ - ./config.yaml:/app/config.yaml
44
+ ports:
45
+ - '9902:9902'
package/package.json CHANGED
@@ -1,11 +1,12 @@
1
1
  {
2
2
  "name": "@things-factory/operato-hub",
3
- "version": "6.0.75",
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": "Operato Business Hub - business, application register and integration",
9
+ "license": "MIT",
9
10
  "publishConfig": {
10
11
  "access": "public",
11
12
  "@things-factory:registry": "https://registry.npmjs.org"
@@ -63,54 +64,54 @@
63
64
  "@operato/scene-table": "^1.0.0",
64
65
  "@operato/scene-visualizer": "^1.0.0",
65
66
  "@operato/scene-wheel-sorter": "^1.0.0",
66
- "@things-factory/api": "^6.0.75",
67
- "@things-factory/apptool-ui": "^6.0.75",
68
- "@things-factory/attachment-base": "^6.0.75",
69
- "@things-factory/auth-base": "^6.0.75",
70
- "@things-factory/auth-ui": "^6.0.75",
71
- "@things-factory/biz-base": "^6.0.75",
72
- "@things-factory/biz-ui": "^6.0.75",
73
- "@things-factory/board-service": "^6.0.75",
74
- "@things-factory/board-ui": "^6.0.75",
75
- "@things-factory/code-ui": "^6.0.75",
76
- "@things-factory/component-ui": "^6.0.71",
77
- "@things-factory/context-ui": "^6.0.75",
78
- "@things-factory/document-template-ui": "^6.0.75",
79
- "@things-factory/env": "^6.0.71",
80
- "@things-factory/export-ui": "^6.0.75",
81
- "@things-factory/export-ui-csv": "^6.0.75",
82
- "@things-factory/export-ui-excel": "^6.0.75",
83
- "@things-factory/grist-ui": "^6.0.75",
84
- "@things-factory/help": "^6.0.75",
85
- "@things-factory/i18n-base": "^6.0.75",
86
- "@things-factory/import-ui": "^6.0.75",
87
- "@things-factory/import-ui-excel": "^6.0.75",
88
- "@things-factory/integration-accounting": "^6.0.75",
89
- "@things-factory/integration-fulfillment": "^6.0.75",
90
- "@things-factory/integration-lmd": "^6.0.75",
91
- "@things-factory/integration-marketplace": "^6.0.75",
92
- "@things-factory/integration-pos": "^6.0.75",
93
- "@things-factory/integration-sellercraft": "^6.0.75",
94
- "@things-factory/integration-sftp": "^6.0.75",
95
- "@things-factory/lite-menu": "^6.0.75",
96
- "@things-factory/more-ui": "^6.0.75",
97
- "@things-factory/notification": "^6.0.75",
98
- "@things-factory/pdf": "^6.0.71",
99
- "@things-factory/product-ui": "^6.0.75",
100
- "@things-factory/resource-ui": "^6.0.75",
101
- "@things-factory/sales-base": "^6.0.75",
102
- "@things-factory/scene-google-map": "^6.0.71",
103
- "@things-factory/setting-ui": "^6.0.75",
104
- "@things-factory/shell": "^6.0.75",
105
- "@things-factory/system-ui": "^6.0.75",
106
- "@things-factory/warehouse-base": "^6.0.75",
107
- "@things-factory/worksheet-base": "^6.0.75",
67
+ "@things-factory/api": "^6.0.78",
68
+ "@things-factory/apptool-ui": "^6.0.78",
69
+ "@things-factory/attachment-base": "^6.0.78",
70
+ "@things-factory/auth-base": "^6.0.78",
71
+ "@things-factory/auth-ui": "^6.0.78",
72
+ "@things-factory/biz-base": "^6.0.78",
73
+ "@things-factory/biz-ui": "^6.0.78",
74
+ "@things-factory/board-service": "^6.0.78",
75
+ "@things-factory/board-ui": "^6.0.78",
76
+ "@things-factory/code-ui": "^6.0.78",
77
+ "@things-factory/component-ui": "^6.0.78",
78
+ "@things-factory/context-ui": "^6.0.78",
79
+ "@things-factory/document-template-ui": "^6.0.78",
80
+ "@things-factory/env": "^6.0.78",
81
+ "@things-factory/export-ui": "^6.0.78",
82
+ "@things-factory/export-ui-csv": "^6.0.78",
83
+ "@things-factory/export-ui-excel": "^6.0.78",
84
+ "@things-factory/grist-ui": "^6.0.78",
85
+ "@things-factory/help": "^6.0.78",
86
+ "@things-factory/i18n-base": "^6.0.78",
87
+ "@things-factory/import-ui": "^6.0.78",
88
+ "@things-factory/import-ui-excel": "^6.0.78",
89
+ "@things-factory/integration-accounting": "^6.0.78",
90
+ "@things-factory/integration-fulfillment": "^6.0.78",
91
+ "@things-factory/integration-lmd": "^6.0.78",
92
+ "@things-factory/integration-marketplace": "^6.0.78",
93
+ "@things-factory/integration-pos": "^6.0.78",
94
+ "@things-factory/integration-sellercraft": "^6.0.78",
95
+ "@things-factory/integration-sftp": "^6.0.78",
96
+ "@things-factory/lite-menu": "^6.0.78",
97
+ "@things-factory/more-ui": "^6.0.78",
98
+ "@things-factory/notification": "^6.0.78",
99
+ "@things-factory/pdf": "^6.0.78",
100
+ "@things-factory/product-ui": "^6.0.78",
101
+ "@things-factory/resource-ui": "^6.0.78",
102
+ "@things-factory/sales-base": "^6.0.78",
103
+ "@things-factory/scene-google-map": "^6.0.78",
104
+ "@things-factory/setting-ui": "^6.0.78",
105
+ "@things-factory/shell": "^6.0.78",
106
+ "@things-factory/system-ui": "^6.0.78",
107
+ "@things-factory/warehouse-base": "^6.0.78",
108
+ "@things-factory/worksheet-base": "^6.0.78",
108
109
  "koa2-swagger-ui": "^5.0.2",
109
110
  "swagger-jsdoc": "^6.2.8",
110
111
  "yamljs": "^0.3.0"
111
112
  },
112
113
  "devDependencies": {
113
- "@things-factory/builder": "^6.0.71"
114
+ "@things-factory/builder": "^6.0.78"
114
115
  },
115
- "gitHead": "f7ca179a7fabfc129a9981a7bd734380a3ac64f0"
116
+ "gitHead": "6d1b076baae617ee1c1df25e176c21d7b1a18e61"
116
117
  }