-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathapp.json
More file actions
86 lines (86 loc) · 1.63 KB
/
app.json
File metadata and controls
86 lines (86 loc) · 1.63 KB
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
{
"name": "Shape",
"description": "The future of work is here.",
"buildpacks": [
{
"url": "heroku/nodejs"
},
{
"url": "heroku/ruby"
}
],
"addons": [],
"env": {
"FILESTACK_API_KEY": {
"required": true
},
"FILESTACK_API_SECRET": {
"required": true
},
"IDEO_NETWORK_CALLBACK_SECRET": {
"required": true
},
"IDEO_SSO_CLIENT_ID": {
"required": true
},
"IDEO_SSO_CLIENT_SECRET": {
"required": true
},
"IDEO_SSO_ENV": {
"required": true
},
"IDEO_SSO_HOST": {
"required": true
},
"IDEO_SSO_REDIRECT_PATH": {
"required": true
},
"VIMEO_V3_API_KEY": {
"required": true
},
"YOUTUBE_V3_API_KEY": {
"required": true
},
"GOOGLE_CLOUD_BROWSER_KEY": {
"required": true
}
},
"environments": {
"review": {
"addons": [
"rediscloud:30",
"memcachedcloud:30",
"sendgrid:starter",
"papertrail:choklad"
],
"buildpacks": [
{
"url": "https://github.com/SectorLabs/heroku-buildpack-git-submodule.git"
},
{
"url": "heroku-community/cli"
},
{
"url": "heroku/nodejs"
},
{
"url": "heroku/ruby"
}
],
"scripts": {
"postdeploy": "script/review-app-setup",
"pr-predestroy": "script/review-app-teardown"
},
"formation": {
"web": {
"quantity": 1,
"size": "Standard-1X"
},
"worker": {
"quantity": 1,
"size": "Standard-1X"
}
}
}
}
}