This repository has been archived by the owner on Dec 5, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathapp.json
46 lines (46 loc) · 1.68 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
{
"addons": [
{ "plan": "heroku-postgresql:hobby-dev" },
{ "plan": "heroku-postgresql:hobby-dev", "as": "PALADINS_DB" },
{ "plan": "heroku-postgresql:hobby-dev", "as": "SMITE_DB" }
],
"buildpacks": [ { "url": "https://github.com/heroku/heroku-buildpack-python" } ],
"description": "FlaskPyrezAPI is an open-source endpoint for Twitch commands that provides datas about players, matches and others stats of Paladins game.",
"env": {
"DEBUG": {
"description": "",
"required": "true",
"value": "False"
},
"PYREZ_AUTH_ID": {
"description": "Used for authentication. This is the authentication key that you receive from Hi-Rez Studios.",
"required": "true",
"value": ""
},
"PYREZ_DEV_ID": {
"description": "Used for authentication. This is the developer ID that you receive from Hi-Rez Studios.",
"required": "true",
"value": ""
},
"SECRET_KEY": {
"description": "A secret key for verifying the integrity of signed cookies.",
"generator": "secret"
}
},
"environments": {
"test": {
"scripts": { }
}
},
"image": "heroku/python",
"keywords": [
"flask", "flask-api", "flask-backend", "pyrez", "hirez", "hi-rez", "paladins",
"paladins-api", "api-server", "twitch", "nightbot", "endpoint", "endpoints",
"open-source", "heroku", "python", "bootstrap4", "bootstrap", "jquery", "javascript"
],
"logo": "https://raw.githubusercontent.com/luissilva1044894/FlaskPyrezAPI/master/static/img/pyrez_server.png",
"name": "FlaskPyrezAPI",
"repository": "https://github.com/luissilva1044894/flaskpyrezapi",
"success_url": "/index",
"website": "http://nonsocial.herokuapp.com"
}