Skip to content

Latest commit

 

History

History
19 lines (13 loc) · 614 Bytes

README.md

File metadata and controls

19 lines (13 loc) · 614 Bytes

django-rest-framework

Complete source code for Django Rest Framework which implements basic CRUD functionality in a blog API.

Local Setup

$ git clone  https://github.com/preetsshah/django-rest-framework.git
$ cd django-rest-framework
$ pipenv install
$ pipenv shell
(api) $ ./manage.py runserver

Navigate to the list view at http://127.0.0.1:8000/api/ and detail view at http://127.0.0.1:8000/api/1.

Blog list view

Blog detail view