Accompanying code for this article https://stackabuse.com/creating-a-rest-api-with-django-rest-framework/
- Clone repository:
$ git clone https://github.com/StackAbuse/creating-a-rest-api-with-django-rest-framework.git - Install requirements:
$ pip install -r requirements.txt - Set up DB:
$ python manage.py makemigrations
$ python manage.py migrate - Run the app:
$ python manage.py runserver Thanks for reading.