-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathapp.json
119 lines (119 loc) · 2.19 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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
{
"name": "affinity",
"description": "group management for self-organized work",
"scripts": {
"postdeploy": "bundle exec rake heroku:postdeploy"
},
"env": {
"HEROKU_APP_NAME": {
"required": true
},
"LANG": {
"required": true
},
"RACK_ENV": {
"required": true
},
"RAILS_ENV": {
"required": true
},
"RAILS_LOG_TO_STDOUT": {
"required": true
},
"RAILS_SERVE_STATIC_FILES": {
"required": true
},
"SECRET_KEY_BASE": {
"required": true
},
"DATABASE_URL": {
"required": false
},
"PGP_PRIVATE_KEY_HEROKU": {
"required": true
},
"FACEBOOK_API_ID": {
"required": true
},
"FACEBOOK_API_KEY": {
"required": true
},
"FACEBOOK_API_SECRET": {
"required": true
},
"FACEBOOK_APP_ID": {
"required": true
},
"FACEBOOK_APP_SECRET": {
"required": true
},
"GOOGLE_CLIENT_ID": {
"required": true
},
"GOOGLE_CLIENT_SECRET": {
"required": true
},
"MAILGUN_API_KEY": {
"required": true
},
"MAILGUN_DOMAIN": {
"required": true
},
"MAILGUN_PUBLIC_KEY": {
"required": true
},
"MAILGUN_SMTP_LOGIN": {
"required": true
},
"MAILGUN_SMTP_PASSWORD": {
"required": true
},
"MAILGUN_SMTP_PORT": {
"required": true
},
"MAILGUN_SMTP_SERVER": {
"required": true
},
"NACL_SECRET_KEY": {
"required": true
}
},
"formation": {
"web": {
"quantity": 1,
"size": "standard-1x"
},
"worker": {
"quantity": 1,
"size": "standard-1x"
}
},
"addons": [
"heroku-postgresql",
"heroku-redis",
"scheduler"
],
"buildpacks": [
{
"url": "https://github.com/heroku/heroku-buildpack-apt.git"
},
{
"url": "https://github.com/affinityworks/blackbox-buildpack.git"
},
{
"url": "heroku/nodejs"
},
{
"url": "heroku/ruby"
}
],
"environments": {
"test": {
"scripts": {
"test-setup": "rake heroku:ci",
"test": "rails test"
},
"addons": ["heroku-postgresql:in-dyno", "heroku-redis:in-dyno"]
}
}
}