-
Notifications
You must be signed in to change notification settings - Fork 45
/
app.json
99 lines (99 loc) · 1.65 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "code.pyret.org – Feature Tests",
"description": "",
"scripts": {
},
"env": {
"BASE_URL": {
"required": true
},
"BUILDPACK_URL": {
"required": true
},
"CLIENT_ID": {
"required": true
},
"CLIENT_SECRET": {
"required": true
},
"CSRF_TOKEN": {
"required": true
},
"CURRENT_PYRET_DOCS": {
"required": true
},
"CURRENT_PYRET_RELEASE": {
"required": true
},
"GIT_BRANCH": {
"required": true
},
"GIT_REV": {
"required": true
},
"google_api_key": {
"required": true
},
"GOOGLE_API_KEY": {
"required": true
},
"google_client_id": {
"required": true
},
"GOOGLE_CLIENT_ID": {
"required": true
},
"GOOGLE_CLIENT_SECRET": {
"required": true
},
"GOOGLE_SERVER_KEY": {
"required": true
},
"LOG_URL": {
"required": true
},
"NODE_ENV": {
"required": true
},
"OK_GOOGLE_IDS": {
"required": true
},
"PORT": {
"required": true
},
"PYRET": {
"required": true
},
"PYRET_BACKUP": {
"required": true
},
"PYRET_RELEASE_BASE": {
"required": true
},
"REDISCLOUD_CRIMSON_URL": {
"required": true
},
"REDISCLOUD_URL": {
"required": true
},
"SESSION_SECRET": {
"required": true
},
"USE_STANDALONE_PYRET": {
"required": true
}
},
"formation": {
"web": {
"quantity": 1
}
},
"addons": [
"rediscloud"
],
"buildpacks": [
{
"url": "https://github.com/heroku/heroku-buildpack-nodejs"
}
]
}