Django + Aiogram 1. Create virtualenv and activate python3 -m virtualenv venv source venv/bin/activate 2. Install required packages pip install -r requirements.txt 3. Create .env file using env template file and fill it cp .env.template .env 4. Run django project Migrations python manage.py migrate Run server python manage.py runserver 5. Run aiogram project python manage.py runbot