python3 -m venv venv
source venv/bin/activate
pip3 install -r requirements.txt
# .env
DB_NAME = YOUR_DB_NAME
DB_HOST = localhost
DB_PORT = 3306
DB_USER = YOUR_DB_USER
DB_PASSWORD = YOUR_DB_PASSWORD
python3 manage.py makemigrations
python3 manage.py migrate
python3 manage.py runserver
python3 manage.py test tests