Create a .env file with the following
# the address to your db.sqlite 3 file in the same directory as questions
DB_NAME=my_db
# base url of ur host server
BASE_URL=http://127.0.0.1:8000/
Create a virtual environment and start your virtual environment
py -m venv .venv
source .venv/Scripts/activate
install required files using
pip install -r req.txt
Run server with the following.
py manage.py runserver