Create a virtual environment where all the required python packages will be installed
Install all the project Requirements in virtualenv
pip install -r requirements.txt
-Apply migrations and create your superuser (follow the prompts)
python manage.py migrate
Run the development server
# run django development server
python manage.py runserver