Update: Documentation

This commit is contained in:
Sven Schürmann
2022-03-21 23:10:29 +01:00
committed by Schürmann, Sven (UIT)
parent 2b89d9b29a
commit 1dc204e4ba
2 changed files with 7 additions and 6 deletions

View File

@@ -7,11 +7,12 @@ name = "pypi"
fastapi = "*" fastapi = "*"
uvicorn = "*" uvicorn = "*"
python-multipart = "*" python-multipart = "*"
httpx = "*"
[dev-packages] [dev-packages]
pytest = "*" pytest = "*"
requests = "*" httpx = "*"
autopep8 = "*" autopep8 = "*"
[requires] [requires]
python_version = "3.7" python_version = "3.10"

View File

@@ -18,7 +18,7 @@ Technically, [Python 3](https://www.python.org/) and [FastAPI](https://fastapi.t
Before you start, you must: Before you start, you must:
- Install [Python 3.7.x.](https://www.python.org/downloads/) - Install [Python 3.10.x.](https://www.python.org/downloads/)
- Install [Pipenv](https://pipenv.pypa.io/en/latest/#install-pipenv-today) - Install [Pipenv](https://pipenv.pypa.io/en/latest/#install-pipenv-today)
To activate this project's virtualenv, run following command: To activate this project's virtualenv, run following command:
@@ -27,10 +27,10 @@ To activate this project's virtualenv, run following command:
pipenv shell pipenv shell
``` ```
Then install the project dependencies with: Then install the whole project dependencies with:
```python ```python
pipenv install pipenv install --dev
``` ```
After successful installation the API can be started locally with the command: After successful installation the API can be started locally with the command:
@@ -75,4 +75,4 @@ pytest
``` ```
--- ---
***Copyright © 2022 Union IT-Services GmbH. All rights reserved.*** ***Copyright © 2023 Union IT-Services GmbH. All rights reserved.***