Create venv (manage.py; automatic create)
python -m venv venv
source venv/bin/activate # For Linux/Mac
venv\\Scripts\\activate # For Windows
Install requirement.txt
pip install -r requirement.txt
Linux ( tutorial connect here)
makemigrations and migrate
python manage.py makemigrations
python manage.py migrate
Install backupdb.sql from 👉 (MySQL)
Start Server
python manage.py runserver
npm install