generated from rahulps1000/HerokuBannedDeployer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
44 lines (44 loc) · 1.04 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
{
"name": "HerokuBannedDeployer",
"description": "With this you can deploy repos that are banned/blacklisted by heroku",
"keywords": [
"telegram",
"open",
"source",
"multi",
"purpose",
"remote",
"deployer"
],
"env": {
"OTHER_INSTALLS": {
"description": "If you need install packages for running your app(Python is pre-installed).[Space in between each package]",
"value": "None",
"required": false
},
"REPO_URL": {
"description": "URL of the REPO that you want to deploy.",
"value": ""
},
"PYTHON_FILE": {
"description": "Name of the python file that you need to run. [use -m if you need to run __main__.py from a folder]",
"value": ""
},
"OTHER_CMD": {
"description": "If you need to run any bash command other than python specify here",
"value": "None",
"required": false
}
},
"addons": [
],
"buildpacks": [{
"url": "heroku/python"
}],
"formation": {
"worker": {
"quantity": 1,
"size": "free"
}
}
}