Skip to content

Commit 6f8d725

Browse files
committed
removed task titles from the descriptions in the last two lessons
1 parent c0ebcc4 commit 6f8d725

File tree

10 files changed

+0
-20
lines changed

10 files changed

+0
-20
lines changed

Building the Gateway Application/Add a Dockerfile and requirements.txt/task.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
## Add Dockerfile and requirements.txt
2-
31
### Task
42
Add the files necessary to run the gateway app as a Docker container.
53

Building the Gateway Application/Define routes/task.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
## Define Routes
2-
31
We added the four functions needed in our gateway application for routing requests (in addition to `index()`, which doesn't really do anything).
42
Each of these four functions will send a request to the other application.
53
In this task, you will add the appropriate routes to all of them.

Building the Gateway Application/Delete Device/task.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
## Delete Resource
2-
31
In this task, we will define the `delete_device` function, which will:
42
- Forward the delete request to the relevant endpoint in `invsys`.
53
- Forward the response back to the client by creating a `Response` object from the received `response`.

Building the Gateway Application/Get Devices/task.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
## Get Devices
2-
31
In this task, we will define the `get_devices` function, which will:
42
- Forward the request to the relevant endpoint in `invsys` (depending on the URL: if the item ID is provided,
53
it needs to be added to the route, which in `invsys` will result in calling the `get` endpoint in the function `device`)

Building the Gateway Application/Introduction/task.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
# Gateway Application
2-
31
The next step will be creating an API gateway backend, which acts as a router for client requests.
42
This means our final application will consist of two backend components: the inventory
53
manager and the API gateway.

Building the Gateway Application/Post Device/task.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
## POST Resource
2-
31
In this task, we will define the `post_device` function, which will:
42
- Get the payload from our incoming request.
53
- Forward the POST request to the relevant endpoint in invsys. Do not forget the payload!

Building the Gateway Application/Put Device/task.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
## Put Resource
2-
31
In this task we will define the `put_device` function, which will:
42
- Get the payload from our incoming request.
53
- Forward the PUT request to the relevant endpoint in `invsys`. Do not forget the payload!

Composing the System/Deploying without Docker/task.md

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
1-
## Deploying locally without Docker
2-
3-
41
While this course is focused on deploying with Docker, you can also deploy locally without it.
52

63
You will need to change the routes in the `gateway`:

Composing the System/Docker-compose/task.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
## Composing our system
21
Now we have two Flask apps: Invsys and Gateway.
32
We want them both to be deployed, and we want Gateway to be able to send
43
requests to Invsys using `invsys` instead of a specific IP.

Composing the System/What's next/task.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
## What else to explore
2-
31
Here are some recommended resources for further reading:
42

53
[Flask by example: Part 1](https://realpython.com/flask-by-example-part-1-project-setup/) — a tutorial.

0 commit comments

Comments
 (0)