chore: adjust readme

This commit is contained in:
dancingCycle 2023-03-24 15:52:46 +01:00
parent 4ce29da407
commit cf67adffef
1 changed files with 28 additions and 0 deletions

View File

@ -10,3 +10,31 @@ sudo apt install build-essential --no-install-recommends
sudo apt install libulfius-dev --no-install-recommends
sudo apt install libconfig-dev --no-install-recommends
```
## test API
* create
```
curl --data "name=Hi from curl!" http://<host>:<port>/entities/create
curl -X POST --data "name=Hi from curl!" http://<host>:<port>/entities/create
```
* read all
```
curl http://<host>:<port>/entities/info
```
* read single
```
curl http://<host>:<port>/entities/35/info
```
* update
```
curl --data "name=Hi from curl!" http://<host>:<port>/entities/1/update
```
* delete
```
curl --request "DELETE" http://localhost:<port>/entities/1/delete
```