Skip to content

Commit 11cb088

Browse files
committed
update README.md
1 parent 87c2e6d commit 11cb088

File tree

1 file changed

+21
-1
lines changed

1 file changed

+21
-1
lines changed

README.md

+21-1
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,33 @@ following along: [dev.to/francescoxx/rust-crud-rest-api-3n45](https://dev.to/fra
1212

1313
```sh
1414
DB_URL='postgres://postgres:postgres@db:5432/postgres' cargo build --release # build locally
15-
docker compose -f docker-compose.yaml up -d # build via docker
15+
16+
docker compose -f docker-compose.yaml build app
17+
docker compose -f docker-compose.yaml up -d # build and run via docker
1618
```
1719

1820
## usage
1921

2022
```sh
2123
docker compose -f docker-compose.yaml exec db psql -U postgres # connect to db
24+
25+
26+
curl localhost:8080/users
27+
curl localhost:8080/users/
28+
```
29+
30+
## api
31+
32+
```sh
33+
curl -XGET localhost:8080/users
34+
35+
curl -XGET localhost:8080/users/
36+
37+
jq --null-input '{"name": "foo", "email": "[email protected]"}' | curl -XPOST localhost:8080/users -d @-
38+
39+
jq --null-input '{"name": "max", "email": "[email protected]"}' | curl -XPUT localhost:8080/users/1 -d @-
40+
41+
curl -i -XDELETE localhost:8080/users/3
2242
```
2343

2444
## see also

0 commit comments

Comments
 (0)