├── .gitignore ├── LICENSE ├── Procfile ├── README.md ├── app.json ├── creds.py ├── env.sample ├── main.py ├── requirements.txt └── runtime.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arunpt/Image-UploadBot/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arunpt/Image-UploadBot/HEAD/LICENSE -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | worker: python3 main.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arunpt/Image-UploadBot/HEAD/README.md -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arunpt/Image-UploadBot/HEAD/app.json -------------------------------------------------------------------------------- /creds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arunpt/Image-UploadBot/HEAD/creds.py -------------------------------------------------------------------------------- /env.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arunpt/Image-UploadBot/HEAD/env.sample -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arunpt/Image-UploadBot/HEAD/main.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arunpt/Image-UploadBot/HEAD/requirements.txt -------------------------------------------------------------------------------- /runtime.txt: -------------------------------------------------------------------------------- 1 | python-3.9.2 --------------------------------------------------------------------------------