Skip to content

Latest commit

 

History

History
24 lines (20 loc) · 503 Bytes

README.md

File metadata and controls

24 lines (20 loc) · 503 Bytes

Aiogram 3 New Template (SQLite db)

1. Create virtual environment and install packages

Windows

python -m venv venv && venv\Scripts\activate && pip install -r requirements.txt

Linux/Mac

python3 -m venv venv && source venv/bin/activate && pip3 install -r requirements.txt

2. Create .env file and copy all variables from .env_example to it and customize your self (if needed)

3. Run app.py

Windows

python app.py

Linux/Mac

python3 app.py