This repository has been archived by the owner on Oct 16, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 130
/
Copy pathapp.json
56 lines (54 loc) · 1.68 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
{
"name": "Heaven",
"logo": "https://cloud.githubusercontent.com/assets/704696/3822434/60e8b060-1d25-11e4-9baf-7fdb7f467e2b.gif",
"description": "GitHub flow with capistrano, fabric, and heroku.",
"keywords": [
"deployment",
"capistrano",
"fabric",
"continuous",
"hubot",
"github"
],
"website": "http://github.com/atmos/heaven",
"repository": "https://github.com/atmos/heaven",
"success_url": "/resque",
"addons": ["heroku-postgresql:hobby-dev", "rediscloud"],
"env": {
"BUILDPACK_URL": "https://github.com/ddollar/heroku-buildpack-multi.git",
"RAILS_ENV": "production",
"GITHUB_TOKEN": {
"description": "A personal OAuth token from GitHub with repo scope.",
"required": true
},
"GITHUB_CLIENT_ID": {
"description": "A client id from a GitHub OAuth app you created.",
"required": true
},
"GITHUB_CLIENT_SECRET": {
"description": "A client secret from a GitHub OAuth app you created.",
"required": true
},
"GITHUB_TEAM_ID": {
"description": "A GitHub team id number to restrict resque access to."
},
"HEROKU_API_KEY": {
"description": "A direct authorization token from heroku."
},
"DEPLOYMENT_TIMEOUT": {
"description": "The maximum amount of time a deployment can take in seconds.",
"value": "300"
},
"RAILS_SECRET_KEY_BASE": {
"description": "Unique token for signing cookies. This is generated.",
"generator": "secret"
}
},
"formation": [
{ "process": "web", "quantity": 1, "size": "1X" },
{ "process": "worker", "quantity": 2, "size": "1X" }
],
"scripts": {
"postdeploy": "bundle exec rake db:migrate"
}
}