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.
- Host: GitHub
- URL: https://github.com/wem1c/django_rest_tutorial
- Owner: wem1c
- Archived: true
- Created: 2023-06-05T16:33:59.000Z (about 2 years ago)
- Default Branch: master
- Last Pushed: 2023-06-05T16:46:12.000Z (about 2 years ago)
- Last Synced: 2025-03-03T11:19:44.595Z (3 months ago)
- Topics: django-rest-framework
- Language: Python
- Homepage:
- Size: 18.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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