This repository has been archived by the owner on Aug 30, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 45
/
app.json
59 lines (59 loc) · 1.64 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
56
57
58
59
{
"name": "Freight",
"description": "A deploy service.",
"repository": "https://github.com/getsentry/freight",
"logo": "https://raw.githubusercontent.com/getsentry/freight/master/static/img/freight-logo.png",
"keywords": ["deploy"],
"env": {
"SECRET_KEY": {
"description": "A secret key for verifying the integrity of signed cookies.",
"generator": "secret"
},
"API_KEY": {
"description": "An API key used to communiate with the service.",
"generator": "secret"
},
"GOOGLE_CLIENT_ID": {
"description": "Go to https://console.developers.google.com/ to generate one"
},
"GOOGLE_CLIENT_SECRET": {},
"GOOGLE_DOMAIN": {
"description": "The Google Apps domain you wish to restrict login to"
},
"GITHUB_TOKEN": {
"description": "Github API token for a user that has access to the repository. https://github.com/settings/tokens",
"required": false
},
"GITHUB_API_ROOT": {
"description": "The base URL for the API. Defaults to https://api.github.com",
"value": "https://api.github.com"
},
"SENTRY_DSN": {
"description": "A DSN value from Sentry (Configuration/Client Keys for the project)",
"required": false
},
"DEFAULT_TIMEOUT": "300",
"LOG_LEVEL": "INFO",
"SSH_PRIVATE_KEY": {
"description": "A private key to use when cloning repositories"
}
},
"formation": [
{
"process": "web",
"quantity": 1,
"size": "free"
},
{
"process": "worker",
"quantity": 1,
"size": "free"
}
],
"addons": [
"rediscloud"
],
"scripts": {
"postdeploy": "bin/upgrade"
}
}