update app.json

This commit is contained in:
odysseusmax 2020-08-10 08:03:58 +00:00
parent ad2de8a9ba
commit 4d0a757c94
1 changed files with 26 additions and 26 deletions

View File

@ -1,29 +1,29 @@
{ {
"name": "Telegram Index", "name":"Telegram Index",
"description": "Python Web App which indexes a telegram channel(or a chat) and serves its files for download.", "description":"Python Web App which indexes a telegram channel(or a chat) and serves its files for download.",
"repository": "https://github.com/odysseusmax/tg-index", "repository":"https://github.com/odysseusmax/tg-index",
"success_url": "/", "success_url":"/",
"env": { "env":{
"API_ID": { "API_ID":{
"description": "Telegram api_id obtained from https://my.telegram.org/apps.", "description":"Telegram api_id obtained from https://my.telegram.org/apps.",
"value": "" "value":""
},
"API_HASH":{
"description":"Telegram api_hash obtained from https://my.telegram.org/apps.",
"value":""
},
"CHAT_ID":{
"description":"Id of the telegram channel (or chat) to be indexed.",
"value":""
},
"SESSION_STRING":{
"description":"Your session string.",
"value":""
}
}, },
"API_HASH": { "buildpacks":[
"description": "Telegram api_hash obtained from https://my.telegram.org/apps.", {
"value": "" "url":"heroku/python"
}, }
"CHAT_ID": { ]
"description": "Id of the telegram channel (or chat) to be indexed.",
"value": ""
},
"SESSION_STRING": {
"description": "Your session string.",
"value": ""
},
},
"buildpacks": [
{
"url": "heroku/python"
}
],
} }