-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathapp.json
39 lines (39 loc) · 1.29 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
{
"name": "Django Trello Webhooks",
"description": "Trello webhook management through Django",
"keywords": [
"django",
"trello"
],
"repository": "https://github.com/yunojuno/django-trello-webhooks",
"scripts": {
"postdeploy": "python manage.py migrate --noinput"
},
"logo": "https://d248m4cj7wf7uy.cloudfront.net/images/favicons/black/favicon-160x160.png",
"env": {
"TRELLO_API_KEY": {
"description": "Trello API Key, from https://trello.com/1/appKey/generate",
"required": true
},
"TRELLO_API_SECRET": {
"description": "Trello API Secret, from https://trello.com/1/appKey/generate",
"required": true
},
"CALLBACK_DOMAIN": {
"description": "The hosted domain to which Trello will post callbacks. You **must** update this post-deployment to the new domain.",
"value": "http://heroku-app-name.herokuapp.com",
"required": false
},
"HIPCHAT_API_TOKEN": {
"description": "HipChat API token, required if you want to use the test app, available from hipchat.com",
"required": false
},
"HIPCHAT_ROOM_ID": {
"description": "The ID of the room to which to send updates. Available from hipchat.com",
"required": false
}
},
"addons": [
"heroku-postgresql"
]
}