Skip to content

Commit 95947ee

Browse files
committed
Add bonus content and update documentation
Introduced a new `bonus.md` file with additional Django Rest Framework resources and updated `index.md` with installation steps for `uv`. Modified `mkdocs.yml` to include the bonus content and changed theme colors, while also adding an image `img.png` to aid in documentation.
1 parent a266f21 commit 95947ee

File tree

4 files changed

+59
-38
lines changed

4 files changed

+59
-38
lines changed

docs/bonus.md

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
2+
## Bonus content
3+
4+
### Serializers deep dive
5+
6+
#### Types
7+
8+
1. [Serializer](https://www.django-rest-framework.org/api-guide/serializers/#serializers)
9+
2. [Model Serializer](https://www.django-rest-framework.org/api-guide/serializers/#modelserializer)
10+
3. [Hyperlinked Model Serializer](https://www.django-rest-framework.org/api-guide/serializers/#hyperlinkedmodelserializer)
11+
12+
### Serializer fields
13+
14+
1. [Boolean](https://www.django-rest-framework.org/api-guide/fields/#boolean-fields)
15+
2. [String](https://www.django-rest-framework.org/api-guide/fields/#string-fields)
16+
3. [Numeric](https://www.django-rest-framework.org/api-guide/fields/#numeric-fields)
17+
4. [Date and time](https://www.django-rest-framework.org/api-guide/fields/#date-and-time-fields)
18+
19+
### [Serializer relations](https://www.django-rest-framework.org/api-guide/relations/)
20+
21+
### [Validators](https://www.django-rest-framework.org/api-guide/validators/)
22+
23+
### [Routers](https://www.django-rest-framework.org/api-guide/routers/)
24+
25+
### [ViewSets](https://www.django-rest-framework.org/api-guide/viewsets/)
26+
27+
### [The Browsable API](https://www.django-rest-framework.org/topics/browsable-api/)

docs/img.png

86.9 KB
Loading

docs/index.md

+27-33
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,11 @@ The goal of this tutorial is for you to have Music API ready to receive songs, a
66

77
Requirements list:
88

9-
1. Python 3
9+
1. Python 3.12
1010
2. Git
11+
3. [uv](https://docs.astral.sh/uv/)
1112

13+
---
1214
- **Total Duration:** 3 hours 30 minutes
1315
- **Lecture:** 1 hour (approximately 30%)
1416
- **Exercises:** 2 hours 30 minutes (approximately 70%)
@@ -20,7 +22,7 @@ Requirements list:
2022
## Introduction and Overview
2123

2224
### [Django](https://www.djangoproject.com/)
23-
To start, we first need to understand what Django is. Django is the most popular web framework in the Python ecosystem, characterized by its high-level structure that encourages rapid development and clean, pragmatic design. It has been constructed by experienced developers and aims to mitigate the hassles of web development; this allows developers to focus their attention on writing their app without feeling the need to reinvent the wheel. Django is a free and open-source framework that is ingrained in the model-template-views architectural pattern. Its maintenance is overseen by the Django Software Foundation, an independent, non-profit organization based in the United States.
25+
To start, we first need to understand what Django is. Django is the most popular web framework in the Python ecosystem, characterized by its high-level structure that encourages rapid development and clean, pragmatic design. It has been constructed by experienced developers and aims to mitigate the hassles of web development; this allows developers to focus their attention on writing their app without feeling the need to reinvent the wheel. Django is a free and open-source framework that is ingrained in the model-template-views architectural pattern. Its maintenance is overseen by the [Django Software Foundation](https://www.djangoproject.com/foundation/), an independent, non-profit organization based in the United States.
2426

2527
### [Django Rest Framework](https://www.django-rest-framework.org/)
2628
The Django Rest Framework is a powerful library constructed on top of Django, with a unique interlinking to the Django Model. This relationship endows Django with the enhanced ability to create APIs(application programming interfaces).
@@ -68,11 +70,30 @@ Clone the repository:
6870
git clone [email protected]:lipemorais/building-your-first-api-with-django-and-django-rest-framework.git
6971
```
7072

71-
This will clone the repository
73+
With the repository cloned, you need to install uv on your machine to manage the project and dependencies here:
74+
[uv instalation instruction](https://docs.astral.sh/uv/getting-started/installation/#installing-uv)
75+
76+
Now you have the project cloned and uv installed,
77+
you need to follow these steps on create your virtualenv and install the dependencies.
78+
79+
```shell
80+
cd building-your-first-api-with-django-and-django-rest-framework
81+
uv venv
82+
source .venv/bin/activate # if you are on Windows use: .venv\Scripts\activate
83+
uv sync
84+
task run # to see the application running
85+
```
86+
87+
You might be able to see the application running o [127.0.0.1:8000](http://127.0.0.1:8000/).
88+
89+
![img.png](img.png)
90+
91+
92+
Well done! Now you are all set!
7293

7394
## Creating the music Django App
7495

75-
Now we are going to create the Django we are going to use in this tutorial.
96+
Now we are going to dive into the Django world, creating the Music app we are going to use in this tutorial.
7697

7798
```shell
7899
cd first_api
@@ -211,10 +232,10 @@ def index(_request):
211232
return HttpResponse("My first API!")
212233
```
213234

214-
So no you can use the command `task r` to start our django server, so you can access http://127.0.0.1:8000/ to see it.
235+
So no you can use the command `task r` to start our django server, so you can access [http://127.0.0.1:8000/](http://127.0.0.1:8000/) to see it.
215236
![my_first_api.png](images/my_first_api.png)
216237

217-
Until here we just looked at Django stuff. Now we will dive into Django Rest Framework(DRF) stuff.
238+
Until here we just looked at Django concepts. Now we will dive into Django Rest Framework(DRF) concepts.
218239

219240
## Serializers
220241

@@ -586,30 +607,3 @@ With this part done you will be able to run you application and see something li
586607
![final-version.png](images/final-version.png)
587608

588609
Now you api is complete! Congratulations! 🍾🎉🎊
589-
590-
## Bonus content
591-
592-
### Serializers deep dive
593-
594-
#### Types
595-
596-
1. [Serializer](https://www.django-rest-framework.org/api-guide/serializers/#serializers)
597-
2. [Model Serializer](https://www.django-rest-framework.org/api-guide/serializers/#modelserializer)
598-
3. [Hyperlinked Model Serializer](https://www.django-rest-framework.org/api-guide/serializers/#hyperlinkedmodelserializer)
599-
600-
### Serializer fields
601-
602-
1. [Boolean](https://www.django-rest-framework.org/api-guide/fields/#boolean-fields)
603-
2. [String](https://www.django-rest-framework.org/api-guide/fields/#string-fields)
604-
3. [Numeric](https://www.django-rest-framework.org/api-guide/fields/#numeric-fields)
605-
4. [Date and time](https://www.django-rest-framework.org/api-guide/fields/#date-and-time-fields)
606-
607-
### [Serializer relations](https://www.django-rest-framework.org/api-guide/relations/)
608-
609-
### [Validators](https://www.django-rest-framework.org/api-guide/validators/)
610-
611-
### [Routers](https://www.django-rest-framework.org/api-guide/routers/)
612-
613-
### [ViewSets](https://www.django-rest-framework.org/api-guide/viewsets/)
614-
615-
### [The Browsable API](https://www.django-rest-framework.org/topics/browsable-api/)

mkdocs.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
site_name: 🌐 Building Your First API with Django and Django Rest Framework
22
nav:
33
- Home: index.md
4-
- Sample: sample.md
54
- About: about.md
5+
- Bonus Content: bonus.md
66
theme:
77
name: material
88
features:
@@ -21,14 +21,14 @@ theme:
2121
toggle:
2222
icon: material/weather-night
2323
name: Switch to dark mode
24-
primary: deep purple
25-
accent: pink
24+
primary: light blue
25+
accent: cyan
2626
- scheme: slate
2727
toggle:
2828
icon: material/weather-sunny
2929
name: Switch to light mode
30-
primary: deep purple
31-
accent: pink
30+
primary: light blue
31+
accent: cyan
3232

3333
extra:
3434
social:

0 commit comments

Comments
 (0)