This repository has been archived by the owner on Dec 23, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathapp.json
55 lines (55 loc) · 1.54 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "Camp",
"description": "Basecamp console for loosely managed projects and people.",
"keywords": [
"productivity",
"project management",
"basecamp"
],
"env": {
"BASECAMP_ID": {
"description": "Basecamp account ID."
},
"BASECAMP_USERNAME": {
"description": "Basecamp username."
},
"BASECAMP_PASSWORD": {
"description": "Basecamp password."
},
"BASECAMP_USERAGENT": {
"description": "Useragent sent to Basecamp.",
"required": false
},
"BASECAMP_GROUP_ID": {
"description": "Basecamp group id; the basecamp account can be managed through this app if the account belongs to the group.",
"required": false
},
"OMNIAUTH_GOOGLE_CLIENT_ID": {
"description": "Google app client id to be used for authentication."
},
"OMNIAUTH_GOOGLE_CLIENT_SECRET": {
"description": "Google app client secret to be used for authentication."
},
"OMNIAUTH_VALID_DOMAIN": {
"description": "Domain name to accept login.",
"value": "ubiregi.com"
},
"FORCE_SSL": {
"description": "Specify true if you want to set force_ssl = true.",
"value": "true",
"required": false
},
"SECRET_TOKEN": {
"description": "A secret key for verifying the integrity of signed cookies.",
"generator": "secret"
},
"WEB_CONCURRENCY": {
"description": "The number of processes to run.",
"value": "2"
},
"MAX_THREADS": {
"description": "The number of threads to run.",
"value": "5"
}
}
}