File tree 1 file changed +21
-1
lines changed
1 file changed +21
-1
lines changed Original file line number Diff line number Diff line change @@ -12,13 +12,33 @@ following along: [dev.to/francescoxx/rust-crud-rest-api-3n45](https://dev.to/fra
12
12
13
13
``` sh
14
14
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
16
18
```
17
19
18
20
## usage
19
21
20
22
``` sh
21
23
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
22
42
```
23
43
24
44
## see also
You can’t perform that action at this time.
0 commit comments