@things-factory/operato-gangsters 6.0.76 → 6.0.81

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.
@@ -36,5 +36,17 @@ module.exports = {
36
36
  password: 'abcd1234',
37
37
  synchronize: true,
38
38
  logging: true
39
+ },
40
+ scheduler: {
41
+ /* Name to be used for setting client's "application" properties when registering a schedule */
42
+ application: 'operato-gangsters',
43
+ /* Base endpoint to be used for setting "callback" properties when registering a schedule */
44
+ callbackBase: 'http://app:3000',
45
+ /*
46
+ Scheduler service endpoint
47
+ caution) endpoint for "localhost" has some problem.
48
+ https://github.com/node-fetch/node-fetch/issues/1624
49
+ */
50
+ endpoint: 'http://scheduler:9902'
39
51
  }
40
52
  }
@@ -17,7 +17,7 @@ services:
17
17
  - 4000:3000
18
18
  depends_on:
19
19
  - postgres
20
-
20
+ - scheduler
21
21
  postgres:
22
22
  image: postgres:13.2
23
23
  container_name: db-operato-gangsters
@@ -30,3 +30,10 @@ services:
30
30
  ports:
31
31
  - '55432:5432'
32
32
 
33
+ scheduler:
34
+ image: hatiolab/schevt-mgr:latest
35
+ container_name: scheduler
36
+ volumes:
37
+ - ./config.yaml:/app/config.yaml
38
+ ports:
39
+ - '9902:9902'
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@things-factory/operato-gangsters",
3
- "version": "6.0.76",
3
+ "version": "6.0.81",
4
4
  "main": "dist-server/index.js",
5
5
  "browser": "dist-client/index.js",
6
6
  "things-factory": true,
@@ -56,34 +56,34 @@
56
56
  "@operato/scene-switch": "^1.0.0",
57
57
  "@operato/scene-table": "^1.0.0",
58
58
  "@operato/scene-timer": "^1.0.0",
59
- "@things-factory/api": "^6.0.76",
60
- "@things-factory/apptool-ui": "^6.0.76",
61
- "@things-factory/auth-ui": "^6.0.76",
62
- "@things-factory/board-service": "^6.0.76",
63
- "@things-factory/board-ui": "^6.0.76",
64
- "@things-factory/context-ui": "^6.0.76",
65
- "@things-factory/dashboard": "^6.0.76",
66
- "@things-factory/export-ui": "^6.0.76",
67
- "@things-factory/grist-ui": "^6.0.76",
68
- "@things-factory/help": "^6.0.76",
69
- "@things-factory/i18n-base": "^6.0.76",
70
- "@things-factory/integration-msgraph": "^6.0.76",
71
- "@things-factory/integration-ui": "^6.0.76",
72
- "@things-factory/lite-menu": "^6.0.76",
73
- "@things-factory/more-ui": "^6.0.76",
74
- "@things-factory/notification": "^6.0.76",
75
- "@things-factory/oauth2-client": "^6.0.76",
76
- "@things-factory/organization": "^6.0.76",
77
- "@things-factory/print-ui": "^6.0.76",
78
- "@things-factory/resource-ui": "^6.0.76",
79
- "@things-factory/setting-base": "^6.0.76",
80
- "@things-factory/setting-ui": "^6.0.76",
81
- "@things-factory/shell": "^6.0.76",
82
- "@things-factory/system-ui": "^6.0.76",
83
- "@things-factory/worklist": "^6.0.76"
59
+ "@things-factory/api": "^6.0.78",
60
+ "@things-factory/apptool-ui": "^6.0.78",
61
+ "@things-factory/auth-ui": "^6.0.81",
62
+ "@things-factory/board-service": "^6.0.78",
63
+ "@things-factory/board-ui": "^6.0.78",
64
+ "@things-factory/context-ui": "^6.0.78",
65
+ "@things-factory/dashboard": "^6.0.78",
66
+ "@things-factory/export-ui": "^6.0.78",
67
+ "@things-factory/grist-ui": "^6.0.78",
68
+ "@things-factory/help": "^6.0.78",
69
+ "@things-factory/i18n-base": "^6.0.78",
70
+ "@things-factory/integration-msgraph": "^6.0.81",
71
+ "@things-factory/integration-ui": "^6.0.81",
72
+ "@things-factory/lite-menu": "^6.0.78",
73
+ "@things-factory/more-ui": "^6.0.78",
74
+ "@things-factory/notification": "^6.0.78",
75
+ "@things-factory/oauth2-client": "^6.0.81",
76
+ "@things-factory/organization": "^6.0.78",
77
+ "@things-factory/print-ui": "^6.0.78",
78
+ "@things-factory/resource-ui": "^6.0.81",
79
+ "@things-factory/setting-base": "^6.0.78",
80
+ "@things-factory/setting-ui": "^6.0.78",
81
+ "@things-factory/shell": "^6.0.78",
82
+ "@things-factory/system-ui": "^6.0.78",
83
+ "@things-factory/worklist": "^6.0.81"
84
84
  },
85
85
  "devDependencies": {
86
- "@things-factory/builder": "^6.0.76"
86
+ "@things-factory/builder": "^6.0.78"
87
87
  },
88
- "gitHead": "9764b72a970f16771840811199df6a29e1dc7a30"
88
+ "gitHead": "184612c4610f1ab154bd26ff4a862ec3a6d852fb"
89
89
  }