The first thing to do is to clone the repository:
$ https://github.com/kabirdutt0907/o1analysis.gitCreate a virtual environment to install dependencies in and activate it:
$ virtualenv venv
$ venv\Scripts\activateThen install the dependencies:
(venv)$ cd apti_backend
(venv)$ pip install -r requirements.txtNote the (venv) in front of the prompt. This indicates that this terminal
session operates in a virtual environment.
Once pip has finished downloading the dependencies:
(venv)$ python manage.py runserverAnd navigate to http://127.0.0.1:8000.