-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathapp.json
53 lines (52 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"name": "Viral Queue in Flask",
"description": "Waitlist template for your startup idea",
"keywords": [
"python",
"heroku",
"waitlist",
"queue",
"marketing",
"viral"
],
"repository": "https://github.com/okomarov/viralq_on_flask",
"success_url": "/",
"env": {
"SECRET_KEY": {
"description": "A secret key for your Flask app",
"generator": "secret"
},
"MAIL_PORT": {
"description": "Port to your email service",
"value": "***"
},
"MAIL_SERVER": {
"description": "Server name of your email service",
"value": "***"
},
"MAIL_USERNAME": {
"description": "Username for your email service",
"value": "***"
},
"MAIL_PASSWORD": {
"description": "Password for your email service",
"value": "***"
}
},
"formation": {
"web": {
"quantity": 1,
"size": "free"
}
},
"addons": [
{
"plan": "heroku-postgresql:hobby-dev"
}
],
"buildpacks": [
{
"url": "heroku/python"
}
]
}