@things-factory/operato-board 4.0.16 → 4.0.20
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/config.development.js +16 -0
- package/config.production.js +50 -0
- package/package.json +63 -63
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
var licenseKey = require('./license').Key
|
|
2
|
+
module.exports = {
|
|
3
|
+
accessTokenCookieKey: 'access_token.board',
|
|
4
|
+
licenseKey: licenseKey,
|
|
5
|
+
ormconfig: {
|
|
6
|
+
name: 'default',
|
|
7
|
+
type: 'postgres',
|
|
8
|
+
host: 'localhost',
|
|
9
|
+
port: 5432,
|
|
10
|
+
database: 'postgres',
|
|
11
|
+
username: 'postgres',
|
|
12
|
+
password: 'hatioLAB1008',
|
|
13
|
+
synchronize: true,
|
|
14
|
+
logging: true
|
|
15
|
+
}
|
|
16
|
+
}
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
module.exports = {
|
|
2
|
+
protocol: 'http',
|
|
3
|
+
subdomain: 'system',
|
|
4
|
+
accessTokenCookieKey: 'access_token.board',
|
|
5
|
+
email: {
|
|
6
|
+
host: 'smtp.office365.com', // your sender-email smtp host
|
|
7
|
+
port: 587, // smtp server port
|
|
8
|
+
secure: false, // true for 465, false for other ports
|
|
9
|
+
auth: {
|
|
10
|
+
user: 'your sender-email',
|
|
11
|
+
pass: 'your sender-email password' // generated ethereal password
|
|
12
|
+
},
|
|
13
|
+
secureConnection: false,
|
|
14
|
+
tls: {
|
|
15
|
+
ciphers: 'SSLv3'
|
|
16
|
+
}
|
|
17
|
+
},
|
|
18
|
+
logger: {
|
|
19
|
+
file: {
|
|
20
|
+
filename: 'logs/application-%DATE%.log',
|
|
21
|
+
datePattern: 'YYYY-MM-DD-HH',
|
|
22
|
+
zippedArchive: false,
|
|
23
|
+
maxSize: '20m',
|
|
24
|
+
maxFiles: '2d',
|
|
25
|
+
level: 'info'
|
|
26
|
+
},
|
|
27
|
+
console: {
|
|
28
|
+
level: 'silly'
|
|
29
|
+
}
|
|
30
|
+
},
|
|
31
|
+
// ormconfig: {
|
|
32
|
+
// name: 'default',
|
|
33
|
+
// type: 'sqlite',
|
|
34
|
+
// database: 'db.sqlite',
|
|
35
|
+
// synchronize: false,
|
|
36
|
+
// logging: true,
|
|
37
|
+
// logger: 'debug'
|
|
38
|
+
// }
|
|
39
|
+
ormconfig: {
|
|
40
|
+
name: 'default',
|
|
41
|
+
type: 'postgres',
|
|
42
|
+
host: 'localhost',
|
|
43
|
+
port: 55432,
|
|
44
|
+
database: 'postgres',
|
|
45
|
+
username: 'postgres',
|
|
46
|
+
password: 'abcd1234',
|
|
47
|
+
synchronize: true,
|
|
48
|
+
logging: true
|
|
49
|
+
}
|
|
50
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@things-factory/operato-board",
|
|
3
|
-
"version": "4.0.
|
|
3
|
+
"version": "4.0.20",
|
|
4
4
|
"main": "dist-server/index.js",
|
|
5
5
|
"browser": "client/index.js",
|
|
6
6
|
"things-factory": true,
|
|
@@ -42,72 +42,72 @@
|
|
|
42
42
|
"docker:push:cn": "docker image push hatiolab/operato-board:latest-cn && docker image push hatiolab/operato-board:$npm_package_version-cn"
|
|
43
43
|
},
|
|
44
44
|
"dependencies": {
|
|
45
|
-
"@operato/scene-ar": "^0.0.
|
|
46
|
-
"@operato/scene-chartjs": "^0.0.
|
|
47
|
-
"@operato/scene-clock": "^0.0.
|
|
48
|
-
"@operato/scene-clone": "^0.0.
|
|
49
|
-
"@operato/scene-compass": "^0.0.
|
|
50
|
-
"@operato/scene-gauge": "^0.0.
|
|
51
|
-
"@operato/scene-grist": "^0.0.
|
|
52
|
-
"@operato/scene-i18n": "^0.0.
|
|
53
|
-
"@operato/scene-indoor-map": "^0.0.
|
|
54
|
-
"@operato/scene-integration": "^0.0.
|
|
55
|
-
"@operato/scene-legend": "^0.0.
|
|
56
|
-
"@operato/scene-progressbar": "^0.0.
|
|
57
|
-
"@operato/scene-random": "^0.0.
|
|
58
|
-
"@operato/scene-switch": "^0.0.
|
|
59
|
-
"@operato/scene-
|
|
60
|
-
"@operato/scene-
|
|
61
|
-
"@operato/scene-
|
|
62
|
-
"@
|
|
63
|
-
"@things-factory/
|
|
64
|
-
"@things-factory/
|
|
65
|
-
"@things-factory/
|
|
66
|
-
"@things-factory/board-
|
|
67
|
-
"@things-factory/
|
|
68
|
-
"@things-factory/
|
|
69
|
-
"@things-factory/
|
|
70
|
-
"@things-factory/
|
|
71
|
-
"@things-factory/
|
|
72
|
-
"@things-factory/
|
|
73
|
-
"@things-factory/
|
|
74
|
-
"@things-factory/
|
|
75
|
-
"@things-factory/
|
|
76
|
-
"@things-factory/integration-
|
|
77
|
-
"@things-factory/
|
|
78
|
-
"@things-factory/
|
|
79
|
-
"@things-factory/
|
|
80
|
-
"@things-factory/
|
|
81
|
-
"@things-factory/
|
|
45
|
+
"@operato/scene-ar": "^0.0.22",
|
|
46
|
+
"@operato/scene-chartjs": "^0.0.22",
|
|
47
|
+
"@operato/scene-clock": "^0.0.22",
|
|
48
|
+
"@operato/scene-clone": "^0.0.22",
|
|
49
|
+
"@operato/scene-compass": "^0.0.22",
|
|
50
|
+
"@operato/scene-gauge": "^0.0.22",
|
|
51
|
+
"@operato/scene-grist": "^0.0.22",
|
|
52
|
+
"@operato/scene-i18n": "^0.0.22",
|
|
53
|
+
"@operato/scene-indoor-map": "^0.0.22",
|
|
54
|
+
"@operato/scene-integration": "^0.0.22",
|
|
55
|
+
"@operato/scene-legend": "^0.0.22",
|
|
56
|
+
"@operato/scene-progressbar": "^0.0.22",
|
|
57
|
+
"@operato/scene-random": "^0.0.22",
|
|
58
|
+
"@operato/scene-switch": "^0.0.22",
|
|
59
|
+
"@operato/scene-tab": "^0.0.22",
|
|
60
|
+
"@operato/scene-table": "^0.0.22",
|
|
61
|
+
"@operato/scene-timer": "^0.0.22",
|
|
62
|
+
"@operato/scene-wheel-sorter": "^0.0.22",
|
|
63
|
+
"@things-factory/apptool-ui": "^4.0.20",
|
|
64
|
+
"@things-factory/attachment-ui": "^4.0.20",
|
|
65
|
+
"@things-factory/auth-ui": "^4.0.20",
|
|
66
|
+
"@things-factory/board-service": "^4.0.20",
|
|
67
|
+
"@things-factory/board-ui": "^4.0.20",
|
|
68
|
+
"@things-factory/context-ui": "^4.0.20",
|
|
69
|
+
"@things-factory/export-ui": "^4.0.20",
|
|
70
|
+
"@things-factory/fav-base": "^4.0.20",
|
|
71
|
+
"@things-factory/font-base": "^4.0.20",
|
|
72
|
+
"@things-factory/form-ui": "^4.0.20",
|
|
73
|
+
"@things-factory/help": "^4.0.20",
|
|
74
|
+
"@things-factory/i18n-ui": "^4.0.20",
|
|
75
|
+
"@things-factory/import-ui": "^4.0.20",
|
|
76
|
+
"@things-factory/integration-notification": "^4.0.20",
|
|
77
|
+
"@things-factory/integration-ui": "^4.0.20",
|
|
78
|
+
"@things-factory/layout-ui": "^4.0.20",
|
|
79
|
+
"@things-factory/more-ui": "^4.0.20",
|
|
80
|
+
"@things-factory/notification": "^4.0.20",
|
|
81
|
+
"@things-factory/oauth2-client": "^4.0.20",
|
|
82
|
+
"@things-factory/offline-ui": "^4.0.20",
|
|
82
83
|
"@things-factory/operato-license-checker": "^3.0.4",
|
|
83
|
-
"@things-factory/pdf": "^4.0.
|
|
84
|
-
"@things-factory/print-service": "^4.0.
|
|
85
|
-
"@things-factory/print-ui": "^4.0.
|
|
86
|
-
"@things-factory/resource-ui": "^4.0.
|
|
87
|
-
"@things-factory/scene-baidu-map": "^4.0.
|
|
88
|
-
"@things-factory/scene-data-transform": "^4.0.
|
|
89
|
-
"@things-factory/scene-excel": "^4.0.
|
|
90
|
-
"@things-factory/scene-firebase": "^4.0.
|
|
91
|
-
"@things-factory/scene-form": "^4.0.
|
|
92
|
-
"@things-factory/scene-google-map": "^4.0.
|
|
93
|
-
"@things-factory/scene-graphql": "^4.0.
|
|
84
|
+
"@things-factory/pdf": "^4.0.20",
|
|
85
|
+
"@things-factory/print-service": "^4.0.20",
|
|
86
|
+
"@things-factory/print-ui": "^4.0.20",
|
|
87
|
+
"@things-factory/resource-ui": "^4.0.20",
|
|
88
|
+
"@things-factory/scene-baidu-map": "^4.0.20",
|
|
89
|
+
"@things-factory/scene-data-transform": "^4.0.20",
|
|
90
|
+
"@things-factory/scene-excel": "^4.0.20",
|
|
91
|
+
"@things-factory/scene-firebase": "^4.0.20",
|
|
92
|
+
"@things-factory/scene-form": "^4.0.20",
|
|
93
|
+
"@things-factory/scene-google-map": "^4.0.20",
|
|
94
|
+
"@things-factory/scene-graphql": "^4.0.20",
|
|
94
95
|
"@things-factory/scene-half-roundrect": "^4.0.9",
|
|
95
|
-
"@things-factory/scene-label": "^4.0.
|
|
96
|
-
"@things-factory/scene-marker": "^4.0.
|
|
97
|
-
"@things-factory/scene-mqtt": "^4.0.
|
|
98
|
-
"@things-factory/scene-news-ticker": "^4.0.
|
|
99
|
-
"@things-factory/scene-restful": "^4.0.
|
|
100
|
-
"@things-factory/scene-
|
|
101
|
-
"@things-factory/scene-
|
|
102
|
-
"@things-factory/
|
|
103
|
-
"@things-factory/
|
|
104
|
-
"@things-factory/
|
|
105
|
-
"@things-factory/system-ui": "^4.0.16"
|
|
96
|
+
"@things-factory/scene-label": "^4.0.20",
|
|
97
|
+
"@things-factory/scene-marker": "^4.0.20",
|
|
98
|
+
"@things-factory/scene-mqtt": "^4.0.20",
|
|
99
|
+
"@things-factory/scene-news-ticker": "^4.0.20",
|
|
100
|
+
"@things-factory/scene-restful": "^4.0.20",
|
|
101
|
+
"@things-factory/scene-urdf": "^4.0.20",
|
|
102
|
+
"@things-factory/scene-visualizer": "^4.0.20",
|
|
103
|
+
"@things-factory/screencast-ui": "^4.0.20",
|
|
104
|
+
"@things-factory/setting-ui": "^4.0.20",
|
|
105
|
+
"@things-factory/system-ui": "^4.0.20"
|
|
106
106
|
},
|
|
107
107
|
"devDependencies": {
|
|
108
|
-
"@things-factory/board-test": "^4.0.
|
|
109
|
-
"@things-factory/builder": "^4.0.
|
|
108
|
+
"@things-factory/board-test": "^4.0.20",
|
|
109
|
+
"@things-factory/builder": "^4.0.20"
|
|
110
110
|
},
|
|
111
111
|
"resolutions": {},
|
|
112
|
-
"gitHead": "
|
|
112
|
+
"gitHead": "c597c72345f43f0a4780feda11d89d3218ac8a3e"
|
|
113
113
|
}
|