-
Notifications
You must be signed in to change notification settings - Fork 29
/
app.json
34 lines (34 loc) · 929 Bytes
/
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": "Redisred",
"description": "A Simple, Lightweight URL Redirector.",
"website": "http://jackserrino.com/redisred/",
"repository": "https://github.com/heroku/node-js-sample",
"logo": "https://jackserrino.com/redisred/logo.png",
"success_url": "/admin",
"keywords": [
"node",
"express",
"redis"
],
"env": {
"ADMIN_USERNAME": {
"description": "The username used to log into the admin console."
},
"ADMIN_PASSWORD": {
"description": "The password used to log into the admin console."
},
"API_TOKEN": {
"description": "The token to be used on all API calls"
},
"ROOT_REDIRECT": {
"description": "The URL the root of your website should redirect to."
},
"SESSION_SECRET": {
"description": "A secret key for verifying the integrity of signed cookies.",
"generator": "secret"
}
},
"addons": [
"heroku-redis"
]
}