generated from sastraxi/typescript-express-knex
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.json
39 lines (39 loc) · 1.13 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": "trello-clone",
"description": "This project allows you to sync a subset of cards from one board to another.",
"repository": "https://github.com/sastraxi/trello-clone",
"logo": "https://node-js-sample.herokuapp.com/node.png",
"keywords": ["node", "express", "typescript", "trello", "mongodb"],
"buildpacks": [
{
"url": "heroku/nodejs"
}
],
"addons": ["mongolab"],
"env": {
"URL": {
"description": "Deployed URL of this app (without trailing slash!)",
"required": true
},
"SESSION_SECRET": {
"description": "A secret key for verifying the integrity of signed cookies.",
"generator": "secret"
},
"TRELLO_KEY": {
"description": "Trello API key",
"required": true
},
"TRELLO_SECRET": {
"description": "Trello API secret",
"required": true
},
"LIMIT_MAX_CONCURRENT": {
"description": "Maximum number of in-flight requests to the Trello API at a given time",
"value": "1"
},
"LIMIT_MIN_TIME_MS": {
"description": "Milliseconds to wait between sending requests to the Trello API",
"value": "150"
}
}
}