Skip to content
Snippets Groups Projects
Commit eca20d8d authored by Robert Goldmann's avatar Robert Goldmann
Browse files

cleanup readme

parent 82be9482
No related branches found
No related tags found
No related merge requests found
......@@ -7,7 +7,7 @@ An interactive OpenAPI Swagger documentation can be accessed by opening the serv
- temperature
- humidity
---
## Credits
### Icons
......@@ -17,13 +17,3 @@ An interactive OpenAPI Swagger documentation can be accessed by opening the serv
### Python libraries
See `Pipfile` and `Pipfile.lock`
(This project uses some personal libraries not available on the official pypi. The source code can be found here [https://thecodelabs.de/TheCodeLabs/PythonLibs](https://thecodelabs.de/TheCodeLabs/PythonLibs))
---
## Installation on Raspberry Pi Zero
Pipenv can cause some problems. Possible solution:
- use pipenv 2018-11-26
- run `pipenv lock`
- open `Pipfile.lock` and remove the `gevent` dependency
- run `Pipenv sync`
- install gevent manually via `pipenv install gevent`
\ No newline at end of file
......@@ -42,7 +42,7 @@ async def create_measurement(measurement: Schemas.MeasurementCreate, db: Session
@router.put('/measurement/{measurementId}', response_model=Schemas.Measurement,
summary='Update a specific measurement',
summary='Updates a specific measurement',
responses={404: {'description': 'Measurement not found'}},
dependencies=[Depends(check_api_key)])
async def update_measurement(measurementId: int, measurement: Schemas.MeasurementUpdate, db: Session = Depends(get_database)):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment