├── .dockerignore ├── .gitignore ├── Dockerfile ├── LICENSE ├── Procfile ├── README.md ├── app.json ├── luna.py ├── requirements.txt ├── runtime.txt └── sample_config.py /.dockerignore: -------------------------------------------------------------------------------- 1 | __pycache__ 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | config.py 2 | *.session 3 | __pycache__ 4 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHamkerCat/LunaChatBot/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHamkerCat/LunaChatBot/HEAD/LICENSE -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | worker: python3 luna.py 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHamkerCat/LunaChatBot/HEAD/README.md -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHamkerCat/LunaChatBot/HEAD/app.json -------------------------------------------------------------------------------- /luna.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHamkerCat/LunaChatBot/HEAD/luna.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | git+https://github.com/KurimuzonAkuma/pyrogram.git 2 | python-arq 3 | TgCrypto 4 | -------------------------------------------------------------------------------- /runtime.txt: -------------------------------------------------------------------------------- 1 | python-3.9.6 2 | -------------------------------------------------------------------------------- /sample_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHamkerCat/LunaChatBot/HEAD/sample_config.py --------------------------------------------------------------------------------