-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathapp.json
40 lines (40 loc) · 1.18 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
{
"name": "UFO Management Server",
"description": "Management server for multiple uProxy instances",
"keywords": [],
"website": "https://uproxy.org/",
"repository": "https://github.com/uproxy/ufo-management-server",
"logo": "https://uproxy.org/images/uproxy_logo.svg",
"success_url": "/setup",
"scripts": {
"postdeploy": "python setup_database.py"
},
"env": {
"SECRET_KEY": {
"description": "Secret token, used for signing cookies.",
"generator": "secret"
},
"RECAPTCHA_SITE_KEY": {
"description": "Site key for recaptcha login protection. Once configured, can be found here: https://www.google.com/recaptcha/admin#list",
"required": false
},
"RECAPTCHA_SECRET_KEY": {
"description": "Secret key for recaptcha login protection. Once configured, can be found here: https://www.google.com/recaptcha/admin#list",
"required": false
}
},
"addons": [
"heroku-postgresql"
],
"buildpacks": [
{
"url": "https://github.com/heroku/heroku-buildpack-nodejs"
},
{
"url": "https://github.com/heroku/heroku-buildpack-python"
},
{
"url": "https://github.com/uProxy/nginx-buildpack"
}
]
}