-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.config.js
74 lines (74 loc) · 2.06 KB
/
app.config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
export default {
test: {
basePath: '/',
typesense: {
host: 'toolbox-backend-dev.tugraz.at',
port: '443',
protocol: 'https',
key: 'bRQ0Hrg9SAPGR3CVu5hm5bBTggUhsq0e',
},
searchIndexName: 'software-overview',
daysStillNew: 31,
email: '[email protected]'
},
local: {
basePath: '/',
typesense: {
host: 'localhost',
port: '8108',
protocol: 'http',
key: 'xyz',
},
searchIndexName: 'software-overview',
daysStillNew: 31,
email: '[email protected]'
},
development: {
basePath: '/',
typesense: {
host: 'toolbox-backend-dev.tugraz.at',
port: '443',
protocol: 'https',
key: 'bRQ0Hrg9SAPGR3CVu5hm5bBTggUhsq0e',
},
searchIndexName: 'software-overview',
daysStillNew: 31,
email: '[email protected]'
},
demo: {
basePath: '/',
typesense: {
host: 'toolbox-backend-demo.tugraz.at',
port: '443',
protocol: 'https',
key: '8TuZ6RG3HZicFLIf7KjmHG2GJwYTWepk',
},
searchIndexName: 'software-overview',
daysStillNew: 31,
email: '[email protected]'
},
production: {
basePath: '/',
typesense: {
host: 'toolbox-backend.digital-blueprint.org',
port: '443',
protocol: 'https',
key: 'ejtFEuR6LsYabwb9m4yEi4KHlmvWXagU',
},
searchIndexName: 'software-overview',
daysStillNew: 31,
email: '[email protected]'
},
production_test: {
basePath: '/',
typesense: {
host: 'search-backend.digital-blueprint.org',
port: '443',
protocol: 'https',
key: 'qbBrf1jfxSlm25vuzrLWCnJwtnWhixDL',
},
searchIndexName: 'software-overview',
daysStillNew: 31,
email: '[email protected]'
},
};