forked from ResultadosDigitais/matrix
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
37 lines (37 loc) · 1.29 KB
/
app.json
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
{
"name": "Matrix",
"description": "Matrix produces a virtual office for remote teams. In this project, you can run a virtual office to simulate the physical environment",
"repository": "https://github.com/ResultadosDigitais/matrix",
"keywords": ["online workspace", "virtual office", "remote teams"],
"stack": "container",
"env": {
"GOOGLE_CLIENT_ID": {
"description": "Google Client Id to the OAuth authentication",
"value": "xxxxxxx.apps.googleusercontent.com"
},
"GOOGLE_SECRET": {
"description": "Google Secret to the OAuth authentication",
"value": "gXXXXXXXXXXXXXXss"
},
"GOOGLE_CALLBACK_URL": {
"description": "The callback Url to the OAuth authentication",
"value": "http://localhost:8080/auth/google/callback"
},
"COOKIE_SESSION_SECRET": {
"description": "The secret of session",
"value": "my-matrix-session"
},
"COOKIE_SESSION_MAX_AGE": {
"description": "The Session duration",
"value": "2592000000"
},
"WHITELIST_DOMAINS": {
"description": "The list of valid email domains to enter in matrix",
"value": "[]"
},
"ENFORCE_SSL": {
"description": "If you running in HTTPS this variable forces redirect to HTTPS when user access with HTTP",
"value": "true"
}
}
}