Skip to content

Commit ac22c6b

Browse files
committed
alt added for images
1 parent 84a72a7 commit ac22c6b

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
<p align="center">
77
<a href="https://github.com/igormagalhaesr/FastAPI-boilerplate">
8-
<img src="https://user-images.githubusercontent.com/43156212/277095260-ef5d4496-8290-4b18-99b2-0c0b5500504e.png" width="35%" height="auto">
8+
<img src="https://user-images.githubusercontent.com/43156212/277095260-ef5d4496-8290-4b18-99b2-0c0b5500504e.png" alt="Blue Rocket with FastAPI Logo as its window. There is a word FAST written" width="35%" height="auto">
99
</a>
1010
</p>
1111

@@ -114,7 +114,7 @@ ___
114114
## 3. Prerequisites
115115
Start by using the template, and naming the repository to what you want.
116116
<p align="left">
117-
<img src="https://user-images.githubusercontent.com/43156212/277866726-975d1c98-b1c9-4c8e-b4bd-001c8a5728cb.png" width="35%" height="auto">
117+
<img src="https://user-images.githubusercontent.com/43156212/277866726-975d1c98-b1c9-4c8e-b4bd-001c8a5728cb.png" alt="clicking use this template button, then create a new repository option" width="35%" height="auto">
118118
</p>
119119

120120
Then clone your created repository (I'm using the base for the example)
@@ -1042,27 +1042,27 @@ All of the `tier` and `rate_limit` models, schemas, and endpoints are already cr
10421042
Here I'll create a `free` tier:
10431043

10441044
<p align="left">
1045-
<img src="https://user-images.githubusercontent.com/43156212/282275103-d9c4f511-4cfa-40c6-b882-5b09df9f62b9.png" width="70%" height="auto">
1045+
<img src="https://user-images.githubusercontent.com/43156212/282275103-d9c4f511-4cfa-40c6-b882-5b09df9f62b9.png" alt="passing name = free to api request body" width="70%" height="auto">
10461046
</p>
10471047

10481048
And a `pro` tier:
10491049

10501050
<p align="left">
1051-
<img src="https://user-images.githubusercontent.com/43156212/282275107-5a6ca593-ccc0-4965-b2db-09ec5ecad91c.png" width="70%" height="auto">
1051+
<img src="https://user-images.githubusercontent.com/43156212/282275107-5a6ca593-ccc0-4965-b2db-09ec5ecad91c.png" alt="passing name = pro to api request body" width="70%" height="auto">
10521052
</p>
10531053

10541054
Then I'll associate a `rate_limit` for the path `api/v1/tasks/task` for each of them, I'll associate a `rate limit` for the path `api/v1/tasks/task`.
10551055

10561056
1 request every hour (3600 seconds) for the free tier:
10571057

10581058
<p align="left">
1059-
<img src="https://user-images.githubusercontent.com/43156212/282275105-95d31e19-b798-4f03-98f0-3e9d1844f7b3.png" width="70%" height="auto">
1059+
<img src="https://user-images.githubusercontent.com/43156212/282275105-95d31e19-b798-4f03-98f0-3e9d1844f7b3.png" alt="passing path=api/v1/tasks/task, limit=1, period=3600, name=api_v1_tasks:1:3600 to free tier rate limit" width="70%" height="auto">
10601060
</p>
10611061

10621062
10 requests every hour for the pro tier:
10631063

10641064
<p align="left">
1065-
<img src="https://user-images.githubusercontent.com/43156212/282275108-deec6f46-9d47-4f01-9899-ca42da0f0363.png" width="70%" height="auto">
1065+
<img src="https://user-images.githubusercontent.com/43156212/282275108-deec6f46-9d47-4f01-9899-ca42da0f0363.png" alt="passing path=api/v1/tasks/task, limit=10, period=3600, name=api_v1_tasks:10:3600 to pro tier rate limit" width="70%" height="auto">
10661066
</p>
10671067

10681068
Now let's read all the tiers available (`GET api/v1/tiers`):

0 commit comments

Comments
 (0)