-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathapp.json
48 lines (48 loc) · 1.32 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
{
"name": "Twitter Export Tool",
"description": "A simple tool to move your twitter followers to other subs list",
"keywords": [
"fastapi",
"postgresql",
"twitter"
],
"repository": "https://github.com/MohitKumar1991/twitter-export",
"success_url": "/",
"scripts": {
"postdeploy": "python -m tw_sub.recreate_db"
},
"env": {
"ENV": {
"description": "environment variable that determines the flask configuration - namely where to get postgres db url",
"value": "prod"
},
"BASIC_USERNAME": {
"description": "username for your app for protected urls",
"value": "noob"
},
"BASIC_PASSWORD": {
"description": "username for your app for protected urls",
"value": "nommr"
},
"TWITTER_USERNAME": {
"description": "blank for yourself else whoever's followers you want to see",
"value": ""
}
},
"addons": [
{
"plan": "heroku-postgresql",
"options": {
"version": "10"
}
}
],
"buildpacks": [
{
"url":"https://github.com/moneymeets/python-poetry-buildpack.git"
},
{
"url": "heroku/python"
}
]
}