Skip to content

Commit

Permalink
(from getambassador.io) initial
Browse files Browse the repository at this point in the history
  • Loading branch information
mattmcclure-dw committed Feb 25, 2021
1 parent 219f330 commit 8b6726e
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
4 changes: 3 additions & 1 deletion quick-start/qs-python-fastapi.md
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,9 @@ You will now download the repo containing the services' code and run the DataPro
`cd edgey-corp-python-fastapi/DataProcessingService/`

3. Install the dependencies and start the Python server. You may need to use `pip3` and `python3` if you have Python 3 installed.
`pip install fastapi uvicorn requests && python app.py`
`pip install fastapi uvicorn requests && python app.py`
OR
`pip3 install fastapi uvicorn requests && python3 app.py`

```
$ pip install fastapi uvicorn requests && python app.py
Expand Down
6 changes: 4 additions & 2 deletions quick-start/qs-python.md
Original file line number Diff line number Diff line change
Expand Up @@ -121,8 +121,10 @@ You will now download the repo containing the services' code and run the DataPro
2. Change into the repo directory, then into DataProcessingService:
`cd edgey-corp-python/DataProcessingService/`

3. Install the dependencies and start the Python server. You may need to use `pip3` and `python3` if you have Python 3 installed.
`pip install flask requests && python app.py`
3. Install the dependencies and start the Python server. You may need to use `pip3` and `python3` if you have Python 3 installed.
`pip install fastapi uvicorn requests && python app.py`
OR
`pip3 install fastapi uvicorn requests && python3 app.py`

```
$ pip install flask requests && python app.py
Expand Down

0 comments on commit 8b6726e

Please sign in to comment.