forked from Detry322/redisred
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.json
37 lines (37 loc) · 1.01 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
{
"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": {
"OAUTH2_PROXY_CLIENT_ID": {
"description": "The client ID of your Google app."
},
"OAUTH2_PROXY_CLIENT_SECRET": {
"description": "The client secret of your Google app."
},
"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"
},
"ALLOWED_USERS": {
"description": "The Google Plus IDs of users you want to allow to log in."
}
},
"addons": [
"heroku-redis"
]
}