├── Procfile ├── README.md ├── app.json ├── main.py ├── requirements.txt ├── runtime.txt └── session.py /Procfile: -------------------------------------------------------------------------------- 1 | web: python3 main.py 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arunpt/LemonJamServer/HEAD/README.md -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arunpt/LemonJamServer/HEAD/app.json -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arunpt/LemonJamServer/HEAD/main.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | aiohttp==3.7.3 2 | python-dotenv==0.15.0 3 | Telethon==1.19.2 -------------------------------------------------------------------------------- /runtime.txt: -------------------------------------------------------------------------------- 1 | python-3.9.1 -------------------------------------------------------------------------------- /session.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arunpt/LemonJamServer/HEAD/session.py --------------------------------------------------------------------------------