vault backup: 2024-11-02 19:04:40

Affected files:
docs/Guides/Django REST Framework/1 - Setup.md
docs/Guides/Django REST Framework/2 - Initialize your First Project.md
docs/Guides/Django REST Framework/3 - Project Structure.md
docs/Guides/Django REST Framework/4 - REST Framework Setup.md
docs/Guides/Django REST Framework/5 - User Setup and Migrations.md
docs/Guides/Django REST Framework/6 - Django Admin.md
docs/Guides/Django REST Framework/Django REST Framework.md
This commit is contained in:
Keannu Christian Bernasol 2024-11-02 19:04:40 +08:00
parent 848c9cdd58
commit b058b2d155
7 changed files with 18 additions and 6 deletions

View file

@ -9,4 +9,6 @@ Django can be used as-is to develop full stack web apps which include your front
You will be using Django alongside Django REST Framework to instead build a backend API, which will only serve data from your database, and not serve as a frontend framework. This guide will focus on data, so no fancy frontend design stuff!
This guide has concepts that are similar to the official guide for Django linked [here](https://docs.djangoproject.com/en/5.1/intro/tutorial01/). Check it out as well!
This guide has concepts that are similar to the official guide for Django linked [here](https://docs.djangoproject.com/en/5.1/intro/tutorial01/). Check it out as well!
Up Next: [1 - Setup](1%20-%20Setup.md)