├── .env.dist ├── .gitignore ├── Dockerfile ├── README.md ├── bot.py ├── docker-compose.yml ├── requirements.txt ├── systemd └── tgbot.service └── tgbot ├── __init__.py ├── config.py ├── filters ├── __init__.py └── admin.py ├── handlers ├── __init__.py ├── admin.py ├── echo.py └── user.py ├── keyboards ├── __init__.py ├── inline.py └── reply.py ├── middlewares ├── __init__.py └── environment.py ├── misc ├── __init__.py └── states.py ├── models └── __init__.py └── services └── __init__.py /.env.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Latand/tgbot_template/HEAD/.env.dist -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Latand/tgbot_template/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Latand/tgbot_template/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Latand/tgbot_template/HEAD/README.md -------------------------------------------------------------------------------- /bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Latand/tgbot_template/HEAD/bot.py -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Latand/tgbot_template/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | aiogram~=2.18 2 | aioredis<2.0 3 | environs~=9.0 4 | -------------------------------------------------------------------------------- /systemd/tgbot.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Latand/tgbot_template/HEAD/systemd/tgbot.service -------------------------------------------------------------------------------- /tgbot/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tgbot/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Latand/tgbot_template/HEAD/tgbot/config.py -------------------------------------------------------------------------------- /tgbot/filters/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tgbot/filters/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Latand/tgbot_template/HEAD/tgbot/filters/admin.py -------------------------------------------------------------------------------- /tgbot/handlers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tgbot/handlers/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Latand/tgbot_template/HEAD/tgbot/handlers/admin.py -------------------------------------------------------------------------------- /tgbot/handlers/echo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Latand/tgbot_template/HEAD/tgbot/handlers/echo.py -------------------------------------------------------------------------------- /tgbot/handlers/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Latand/tgbot_template/HEAD/tgbot/handlers/user.py -------------------------------------------------------------------------------- /tgbot/keyboards/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tgbot/keyboards/inline.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tgbot/keyboards/reply.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tgbot/middlewares/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tgbot/middlewares/environment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Latand/tgbot_template/HEAD/tgbot/middlewares/environment.py -------------------------------------------------------------------------------- /tgbot/misc/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tgbot/misc/states.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tgbot/models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tgbot/services/__init__.py: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------