notes is a Web API built with Django REST framework.
First, clone the repository to your local machine:
CMD:
git clone https://github.com/Georjay/notes.git
Install the requirements (You can create a virtual environment before doing this):
pip install -r requirements.txt
Create the database:
python manage.py migrate
Finally, run the development server:
python manage.py runserver
The project will be available at 127.0.0.1:8000