├── Dockerfile ├── Procfile ├── README.md ├── app.json ├── app.py ├── bot.py ├── configs.py ├── handlers ├── add_user_to_db.py ├── broadcast_handlers.py ├── check_user_status.py ├── database.py ├── force_sub_handler.py ├── helpers.py ├── save_media.py └── send_file.py ├── heroku.yml ├── render.yaml ├── requirements.txt └── run cmd.txt /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VJBots/File-Store-Bot-With-Url-Shortner/HEAD/Dockerfile -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VJBots/File-Store-Bot-With-Url-Shortner/HEAD/Procfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VJBots/File-Store-Bot-With-Url-Shortner/HEAD/README.md -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VJBots/File-Store-Bot-With-Url-Shortner/HEAD/app.json -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VJBots/File-Store-Bot-With-Url-Shortner/HEAD/app.py -------------------------------------------------------------------------------- /bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VJBots/File-Store-Bot-With-Url-Shortner/HEAD/bot.py -------------------------------------------------------------------------------- /configs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VJBots/File-Store-Bot-With-Url-Shortner/HEAD/configs.py -------------------------------------------------------------------------------- /handlers/add_user_to_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VJBots/File-Store-Bot-With-Url-Shortner/HEAD/handlers/add_user_to_db.py -------------------------------------------------------------------------------- /handlers/broadcast_handlers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VJBots/File-Store-Bot-With-Url-Shortner/HEAD/handlers/broadcast_handlers.py -------------------------------------------------------------------------------- /handlers/check_user_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VJBots/File-Store-Bot-With-Url-Shortner/HEAD/handlers/check_user_status.py -------------------------------------------------------------------------------- /handlers/database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VJBots/File-Store-Bot-With-Url-Shortner/HEAD/handlers/database.py -------------------------------------------------------------------------------- /handlers/force_sub_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VJBots/File-Store-Bot-With-Url-Shortner/HEAD/handlers/force_sub_handler.py -------------------------------------------------------------------------------- /handlers/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VJBots/File-Store-Bot-With-Url-Shortner/HEAD/handlers/helpers.py -------------------------------------------------------------------------------- /handlers/save_media.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VJBots/File-Store-Bot-With-Url-Shortner/HEAD/handlers/save_media.py -------------------------------------------------------------------------------- /handlers/send_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VJBots/File-Store-Bot-With-Url-Shortner/HEAD/handlers/send_file.py -------------------------------------------------------------------------------- /heroku.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VJBots/File-Store-Bot-With-Url-Shortner/HEAD/heroku.yml -------------------------------------------------------------------------------- /render.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VJBots/File-Store-Bot-With-Url-Shortner/HEAD/render.yaml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VJBots/File-Store-Bot-With-Url-Shortner/HEAD/requirements.txt -------------------------------------------------------------------------------- /run cmd.txt: -------------------------------------------------------------------------------- 1 | gunicorn app:app & python3 bot.py 2 | --------------------------------------------------------------------------------