-
Notifications
You must be signed in to change notification settings - Fork 46
/
Copy pathapp.json
28 lines (28 loc) · 855 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
{
"name": "Roxy",
"description": "Deploy Self-Hosted Proxy to unblock websites through Heroku in one click ",
"repository": "https://github.com/CoolFool/Roxy",
"env":{
"DOMAIN":{
"description" : "The domain to proxy through heroku (only HOSTNAME e.g. example.com)",
"required":true
},
"KEEP_DYNO_ALIVE":{
"description" : "Should Roxy keep heroku free dyno alive (change value to 'true' if required)",
"value":"false",
"required":false
},
"HEROKU_APP_URL":{
"description" : "Full Heroku App URL (required if KEEP_DYNO_ALIVE is true)",
"required":false
}
},
"buildpacks": [
{
"url": "heroku/python"
},
{
"url": "https://github.com/CoolFool/heroku-buildpack-nginx.git"
}
]
}