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 129
/
app.json
73 lines (71 loc) · 2.18 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
{
"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", "heroku-redis"],
"env": {
"GITHUB_TOKEN": {
"description": "A personal OAuth token from GitHub with repo scope."
},
"GITHUB_CLIENT_ID": {
"description": "A client id from a GitHub OAuth app you created."
},
"GITHUB_CLIENT_SECRET": {
"description": "A client secret from a GitHub OAuth app you created."
},
"GITHUB_TEAM_ID": {
"description": "A GitHub team id number to restrict resque access to. Optional.",
"required": false
},
"DEPLOYMENT_TIMEOUT": {
"description": "The maximum amount of time a deployment can take in seconds.",
"value": "300"
},
"RAILS_ENV": {
"description": "This is what the RAILS_ENV unix environmental variable is set to.",
"value": "production"
},
"RAILS_SECRET_KEY_BASE": {
"description": "Unique token for signing cookies. This is generated.",
"generator": "secret"
},
"HEROKU_API_KEY": {
"description": "A direct authorization token from heroku. Optional.",
"required": false
},
"REDIS_PROVIDER": {
"description": "Redis config var to use",
"value": "REDIS_URL"
},
"BUNDLER_PRIVATE_SOURCE": {
"description": "Private gem source. Optional.",
"required": false
},
"BUNDLER_PRIVATE_CREDENTIALS": {
"description": "Private gem source credentials. Optional.",
"required": false
}
},
"formation": [
{ "process": "web", "quantity": 1 },
{ "process": "worker", "quantity": 1 }
],
"scripts": {
"postdeploy": "bundle exec rake db:migrate"
},
"buildpacks": [
{ "url": "https://github.com/heroku/heroku-buildpack-ruby.git" },
{ "url": "https://github.com/heroku/heroku-buildpack-python.git" }
]
}