├── .gitattributes ├── Dockerfile ├── Procfile ├── README.md ├── __init__.py ├── app.json ├── app.py ├── bot.py ├── check.sh ├── k8s.yml ├── requirements.txt └── runtime.txt /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/666wcy/search_photo-telegram-bot-heroku/HEAD/.gitattributes -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/666wcy/search_photo-telegram-bot-heroku/HEAD/Dockerfile -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/666wcy/search_photo-telegram-bot-heroku/HEAD/Procfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/666wcy/search_photo-telegram-bot-heroku/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/666wcy/search_photo-telegram-bot-heroku/HEAD/app.json -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/666wcy/search_photo-telegram-bot-heroku/HEAD/app.py -------------------------------------------------------------------------------- /bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/666wcy/search_photo-telegram-bot-heroku/HEAD/bot.py -------------------------------------------------------------------------------- /check.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/666wcy/search_photo-telegram-bot-heroku/HEAD/check.sh -------------------------------------------------------------------------------- /k8s.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/666wcy/search_photo-telegram-bot-heroku/HEAD/k8s.yml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/666wcy/search_photo-telegram-bot-heroku/HEAD/requirements.txt -------------------------------------------------------------------------------- /runtime.txt: -------------------------------------------------------------------------------- 1 | python-3.8.7 --------------------------------------------------------------------------------