docs: small fixes based on friction log (#2954)

* docs: small fixes

* removed python command
This commit is contained in:
Shahed Nasser
2023-01-06 11:40:18 +02:00
committed by GitHub
parent 8ba27a2e28
commit 39c834e043
6 changed files with 14 additions and 28 deletions

View File

@@ -81,19 +81,9 @@ Once done, your server will be accessible at `http://localhost:9000`.
You can test out your server using tools like Postman or by sending a cURL request:
```bash noReport
curl -X GET localhost:9000/store/products | python -m json.tool
curl -X GET localhost:9000/store/products
```
:::note
This command uses Python to format the result of the request better in your command line. If you don't want to use Python you can simply send a request without the formatting:
```bash noReport
curl localhost:9000/store/products
```
:::
---
## Additional steps