├── .github └── workflows │ └── pythonapp.yml ├── .gitignore ├── Procfile ├── README.md ├── __init__.py ├── app.json ├── bot.py └── requirements.txt /.github/workflows/pythonapp.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnshumanFauzdar/telegram-bot-heroku-deploy/HEAD/.github/workflows/pythonapp.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnshumanFauzdar/telegram-bot-heroku-deploy/HEAD/.gitignore -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | worker: python bot.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnshumanFauzdar/telegram-bot-heroku-deploy/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | # Leave this empty -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnshumanFauzdar/telegram-bot-heroku-deploy/HEAD/app.json -------------------------------------------------------------------------------- /bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnshumanFauzdar/telegram-bot-heroku-deploy/HEAD/bot.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnshumanFauzdar/telegram-bot-heroku-deploy/HEAD/requirements.txt --------------------------------------------------------------------------------