-
Notifications
You must be signed in to change notification settings - Fork 126
/
app.json
37 lines (37 loc) · 851 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
35
36
37
{
"name": "Dashapp on Flask",
"description": "Embed your own Dash app into Flask and leverage its authentication layer.",
"keywords": [
"Flask",
"Dash",
"Plotly"
],
"repository": "https://github.com/okomarov/dash_on_flask",
"success_url": "/",
"env": {
"SECRET_KEY": {
"description": "A secret key for verifying the integrity of signed cookies.",
"generator": "secret"
},
"FLASK_APP": {
"description": "Name of entrypoint app file in the root directory.",
"value": "dashapp"
}
},
"formation": {
"web": {
"quantity": 1,
"size": "free"
}
},
"addons": [
{
"plan": "heroku-postgresql:hobby-dev"
}
],
"buildpacks": [
{
"url": "heroku/python"
}
]
}