├── .gitignore ├── LICENSE.md ├── Procfile ├── README.md ├── herokubot.py ├── herokubotcp.py └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eldinnie/ptb-heroku-skeleton/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eldinnie/ptb-heroku-skeleton/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: python herokubot.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eldinnie/ptb-heroku-skeleton/HEAD/README.md -------------------------------------------------------------------------------- /herokubot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eldinnie/ptb-heroku-skeleton/HEAD/herokubot.py -------------------------------------------------------------------------------- /herokubotcp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eldinnie/ptb-heroku-skeleton/HEAD/herokubotcp.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | python-telegram-bot 2 | --------------------------------------------------------------------------------