diff --git a/.gitignore b/.gitignore index 3a36d0f..72cb436 100644 --- a/.gitignore +++ b/.gitignore @@ -4,3 +4,5 @@ __pycache__/ venv/ *.sh logo/ +app.json +Procfile \ No newline at end of file diff --git a/README.md b/README.md index 0361a65..3d91530 100644 --- a/README.md +++ b/README.md @@ -80,10 +80,6 @@ This is the general format, change the values of corresponding fields as your re python3 -m app ``` -## API - -Here's the api description. [API](https://github.com/odysseusmax/tg-index/wiki/API) - ## Contributions Contributions are welcome. diff --git a/app.json b/app.json deleted file mode 100644 index 60628db..0000000 --- a/app.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "name":"Telegram Index", - "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", - "success_url":"/", - "env":{ - "API_ID":{ - "description":"Telegram api_id obtained from https://my.telegram.org/apps.", - "value":"" - }, - "API_HASH":{ - "description":"Telegram api_hash obtained from https://my.telegram.org/apps.", - "value":"" - }, - "INDEX_SETTINGS":{ - "description":"Refer project docs for info.", - "value": "" - }, - "SESSION_STRING":{ - "description":"Your session string.", - "value":"" - }, - "DEBUG":{ - "description":"Give some value to set logging level to debug.", - "value":"", - "required": false - } - }, - "buildpacks":[ - { - "url":"heroku/python" - } - ] -}