forked from wli/celery-flower-heroku
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
37 lines (37 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
{
"name": "Flower",
"description": "Flower is a web tool for monitoring Celery.",
"keywords": [
"celery",
"flower",
"monitor"
],
"website": "https://github.com/wli/celery-flower-heroku",
"repository": "https://github.com/wli/celery-flower-heroku",
"env": {
"BROKER_URL": {
"description": "Default broker URL.",
"value": ""
},
"FLOWER_EMAIL_DOMAIN": {
"description": "Enables Google OAuth. You need to create OAuth credentials and also enable the Google+ API, otherwise it will return 403. You need to your domain to a regex like: .*@example\\.com$",
"value": "",
"required": false
},
"FLOWER_OAUTH2_KEY": {
"description": "Oauth2 key. Required if using OAuth.",
"value": "",
"required": false
},
"FLOWER_OAUTH2_SECRET": {
"description": "OAuth2 secret. Required if using OAuth.",
"value": "",
"required": false
},
"FLOWER_OAUTH2_REDIRECT_URI": {
"description": "OAuth2 redirect uri. Required if using OAuth. Should look like: https://my-app.herokuapp.com/login",
"value": "",
"required": false
}
}
}