@things-factory/operato-board 6.1.12 → 6.1.17
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/README.md +41 -35
- package/dist-server/tsconfig.tsbuildinfo +1 -1
- package/package.json +34 -34
- package/schema.gql +11 -0
package/README.md
CHANGED
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+

|
|
2
|
+
|
|
1
3
|
## Operato Board
|
|
2
4
|
|
|
3
5
|
- Operato : Solution family brand of hatiolab.com(http://www.hatiolab.com)
|
|
@@ -50,44 +52,48 @@ $ yarn serve:dev
|
|
|
50
52
|
```
|
|
51
53
|
|
|
52
54
|
## License
|
|
55
|
+
|
|
53
56
|
### License request process
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
-
|
|
69
|
-
|
|
70
|
-
|
|
57
|
+
|
|
58
|
+
Edit bellowing data and send request to license manager(syj0130@hatiolab.com)
|
|
59
|
+
|
|
60
|
+
- **Product Type** : Things or Operato
|
|
61
|
+
- **License Type** : Production or Evaluation
|
|
62
|
+
- **Purchase Date** : License purchased date
|
|
63
|
+
- **Expiration Date** : License expiration Date
|
|
64
|
+
- **Host Address** : host or UNLIMITED
|
|
65
|
+
host can be
|
|
66
|
+
- host: sub.scond-level.top-level
|
|
67
|
+
> ex) board.hatiolab.com, \*.hatiolab.com
|
|
68
|
+
- ip :
|
|
69
|
+
> ex) 192.168.1.9, 192.168.\*.\*,
|
|
70
|
+
- **Max Target(Board) Count**
|
|
71
|
+
- Board count by domain
|
|
72
|
+
- 0 means unlimited
|
|
73
|
+
- **Max Domain Count**
|
|
74
|
+
- Max domain count in this host
|
|
75
|
+
- 0 means unlimited
|
|
71
76
|
|
|
72
77
|
### license format
|
|
73
|
-
```json
|
|
74
|
-
{
|
|
75
|
-
"License Type": "Evaluation",
|
|
76
|
-
"Purchase Date": "2021.03.23",
|
|
77
|
-
"Expiration Date": "2021.06.30",
|
|
78
|
-
"Host Address": "UNLIMITED",
|
|
79
|
-
"Max Target Count": 0,
|
|
80
|
-
"Max Domain Count": 0,
|
|
81
|
-
"Key":""
|
|
82
|
-
}
|
|
83
|
-
```
|
|
84
78
|
|
|
79
|
+
```json
|
|
80
|
+
{
|
|
81
|
+
"License Type": "Evaluation",
|
|
82
|
+
"Purchase Date": "2021.03.23",
|
|
83
|
+
"Expiration Date": "2021.06.30",
|
|
84
|
+
"Host Address": "UNLIMITED",
|
|
85
|
+
"Max Target Count": 0,
|
|
86
|
+
"Max Domain Count": 0,
|
|
87
|
+
"Key": ""
|
|
88
|
+
}
|
|
89
|
+
```
|
|
85
90
|
|
|
86
91
|
### import license
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
92
|
+
|
|
93
|
+
```js
|
|
94
|
+
var licenseKey = require('./license').Key // import license file
|
|
95
|
+
module.exports = {
|
|
96
|
+
accessTokenCookieKey: 'access_token.board',
|
|
97
|
+
licenseKey: licenseKey // put license key value to here
|
|
98
|
+
}
|
|
99
|
+
```
|