An open API service indexing awesome lists of open source software.

https://github.com/wem1c/django_rest_tutorial

A repository containing the code from Djagno Rest Framework's tutorial, as followed by me.
https://github.com/wem1c/django_rest_tutorial

django-rest-framework

Last synced: about 1 month ago
JSON representation

A repository containing the code from Djagno Rest Framework's tutorial, as followed by me.

Awesome Lists containing this project

README

        

# What is this?

Code I copied/wrote while following [Django Rest Framework's tutorial](https://www.django-rest-framework.org/tutorial/quickstart/)

# Tech used

- [Django](https://www.djangoproject.com/)
- [django-rest-framework](https://www.django-rest-framework.org/)

# Development

## Prerequisites

- [Python](https://www.python.org/)
- [pip](https://pypi.org/project/pip/)

## Installation

1. Clone this repository
2. Create a virtual environment via `python -m venv .venv`
3. Initiate the virtual environment via `source .venv/bin/activate`
4. Install dependencies via `pip install requirements.txt`
5. Run `python manage.py runserver` to start the development server