@things-factory/operato-codelingua 7.0.20 → 7.0.23

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.
@@ -0,0 +1,3 @@
1
+ module.exports = {
2
+ subdomain: 'system'
3
+ }
@@ -0,0 +1,64 @@
1
+ module.exports = {
2
+ protocol: 'http',
3
+ subdomain: 'system',
4
+ accessTokenCookieKey: 'access_token.codeliingua',
5
+ SECRET: '0xD58F835B69B207A76CB6F84a80b1D0d4C79dAC97',
6
+ //licenseKey: licenseKey,
7
+ email: {
8
+ host: 'smtp.office365.com', // your sender-email smtp host
9
+ port: 587, // smtp server port
10
+ secure: false, // true for 465, false for other ports
11
+ auth: {
12
+ user: 'noreply@hatiolab.com',
13
+ pass: 'Jod40260' // generated ethereal password
14
+ },
15
+ secureConnection: false,
16
+ tls: {
17
+ ciphers: 'SSLv3'
18
+ }
19
+ },
20
+ logger: {
21
+ file: {
22
+ filename: 'logs/application-%DATE%.log',
23
+ datePattern: 'YYYY-MM-DD-HH',
24
+ zippedArchive: false,
25
+ maxSize: '20m',
26
+ maxFiles: '2d',
27
+ level: 'info'
28
+ },
29
+ console: {
30
+ level: 'silly'
31
+ }
32
+ },
33
+ // ormconfig: {
34
+ // name: 'default',
35
+ // type: 'postgres',
36
+ // host: '127.0.0.1',
37
+ // port: 5432,
38
+ // database: 'codelingua',
39
+ // username: 'postgres',
40
+ // password: 'hatioLAB1008',
41
+ // synchronize: true,
42
+ // logging: false
43
+ // },
44
+ ormconfig: {
45
+ name: 'default',
46
+ type: 'sqlite',
47
+ database: 'db.sqlite',
48
+ synchronize: false,
49
+ logging: true,
50
+ logger: 'debug'
51
+ },
52
+ scheduler: {
53
+ /* Name to be used for setting client's "application" properties when registering a schedule */
54
+ application: 'operato-codelingua',
55
+ /* Base endpoint to be used for setting "callback" properties when registering a schedule */
56
+ callbackBase: 'http://operato-codelingua-svc.hatiolab.svc.cluster.local',
57
+ /*
58
+ Scheduler service endpoint
59
+ caution) endpoint for "localhost" has some problem.
60
+ https://github.com/node-fetch/node-fetch/issues/1624
61
+ */
62
+ endpoint: 'http://scheduler-svc.hfsvc.svc.cluster.local'
63
+ }
64
+ }
package/db.sqlite ADDED
Binary file