-
Notifications
You must be signed in to change notification settings - Fork 11
/
app.json
56 lines (56 loc) · 1.25 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": "Coyote",
"description": "An open source image annotation app and API to enable the distributed annotation of museum images",
"website": "http://coyote.pics/",
"repository": "https://github.com/coyote-team/coyote",
"keywords": [
"rails"
],
"scripts": {
"postdeploy": "bin/rake db:structure:load db:seed"
},
"image": "heroku/ruby",
"env": {
"COYOTE_REVIEW_APP": "true",
"COYOTE_SEED_USER_PASSWORD": {
"description": "The initial password used for the first Coyote admin user",
"generator": "secret"
},
"MAIL_ADDRESS": {
"required": true
},
"MAIL_DOMAIN": {
"required": true
},
"RACK_ENV": "review",
"RAILS_ENV": "review",
"S3_ACCESS_KEY": {
"required": true
},
"S3_BUCKET": {
"required": true
},
"S3_SECRET_KEY": {
"required": true
},
"SECRET_KEY_BASE": {
"description": "A secret key for verifying the integrity of signed cookies.",
"generator": "secret"
},
"SENDGRID_PASSWORD": {
"required": true
},
"SENDGRID_USERNAME": {
"required": true
}
},
"addons": [
{
"plan": "heroku-postgresql",
"as": "DATABASE",
"options": {
"version": "9.6"
}
}
]
}