[Django REST framework]Quickstart
·
Development/Django
QuickstartProject setup# Create the project directory cd tutorial # Create a virtualenv to isolate our package dependencies locally source env/bin/activate # On Windows use `env\Scripts\activate` # Install Django and Django REST framework into the virtualenv pip install djangorestframework # Set up a new project with a single application cd tutorial cd .. python manage.py migrate python manage.p..