--> Clone repository .
--> Move into the directory where we have the project files :
cd drf-notebook
--> Create a virtual environment :
# If you are on Windows
virtualenv env
# If you are on Linux or Mac
python -m venv env
--> Activate the virtual environment :
# If you are on Windows
.\env\Scripts\activate
# If you are on Linux or Mac
source env/bin/activate
--> Install requirements :
pip install -r requirements.txt
--> run project :
python manage.py runserver
⚠ Open this link in the browser http://127.0.0.1:8000/