-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathapp.json
35 lines (34 loc) · 1.22 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
{
"name": "dockerhub2ci",
"description": "Handle Dockerhub Webhooks to trigger CI or perform other tasks",
"website": "https://github.com/dwilkie/dockerhub2ci",
"repository": "https://github.com/dwilkie/dockerhub2ci",
"scripts": {
"postdeploy": "bundle exec rake db:schema:load && bundle exec rake db:seed"
},
"env": {
"GEMFILE_LOAD_RUBY_VERSION": {
"description": "Load the ruby version in the Gemfile. Required by Heroku",
"value": "1"
},
"API_KEYS": {
"description": "One or more API keys that can be used by Dockerhub Webhooks to authenticate (separated by semicolons (;))",
"generator": "secret"
},
"WEBHOOK_SUBSCRIBERS": {
"description": "A list of Webhook subscribers that will run when Dockerhub webhook is received (separated by semicolons (;))",
"value": "WebhookSubscriber::Travis",
"required": false
},
"TRAVIS_TOKEN": {
"description": "API token for travis. You can generate this token by running 'travis token'",
"value": "REPLACE_ME",
"required": false
},
"SAVE_WEBHOOKS": {
"description": "Set this to 1 to keep a copy of the webhooks in the database",
"value": "0",
"required": false
}
}
}