├── .dockerignore ├── .gitignore ├── Dockerfile ├── LICENSE ├── Procfile ├── README.md ├── app.json ├── bot.py ├── heroku.yml ├── icon.png ├── requirements.txt └── sample.env /.dockerignore: -------------------------------------------------------------------------------- 1 | README.md 2 | .git/ 3 | __pycache__/ 4 | sample.env 5 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .env 2 | tests/ -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henriqueclaranhan/telegram-music-downloader-bot/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henriqueclaranhan/telegram-music-downloader-bot/HEAD/LICENSE -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | worker: python3 bot.py 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henriqueclaranhan/telegram-music-downloader-bot/HEAD/README.md -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henriqueclaranhan/telegram-music-downloader-bot/HEAD/app.json -------------------------------------------------------------------------------- /bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henriqueclaranhan/telegram-music-downloader-bot/HEAD/bot.py -------------------------------------------------------------------------------- /heroku.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henriqueclaranhan/telegram-music-downloader-bot/HEAD/heroku.yml -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henriqueclaranhan/telegram-music-downloader-bot/HEAD/icon.png -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henriqueclaranhan/telegram-music-downloader-bot/HEAD/requirements.txt -------------------------------------------------------------------------------- /sample.env: -------------------------------------------------------------------------------- 1 | TOKEN = "INSERT_YOUR_TOKEN_HERE" 2 | --------------------------------------------------------------------------------