You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+5-5
Original file line number
Diff line number
Diff line change
@@ -12,9 +12,9 @@ The payload will be **session.rs** file.
12
12
13
13
## How to test it
14
14
15
-
You can use **python3 dev.py** or $cargo run --bin main or $RUST_LOG=debug cargo run --bin main to test a web server.
15
+
You can use **$python3 dev.py** or **$cargo run --bin main** or **$RUST_LOG=debug cargo run --bin main** to test a web server.
16
16
17
-
If you are confused, start with **hello** and **hi** apis.
17
+
If you want to start simple, start with **hello** and **hi** apis.
18
18
19
19
You can also test other CLI commands with cargo run --bin name. Refer to **Cargo.toml** for that.
20
20
@@ -96,9 +96,9 @@ If you want working Rust code to reuse, refer to the [Rust Full Stack repository
96
96
97
97
* Find how to reuse SQLite connection or substitute it with [Postgresql and reuse connection with lazy_static](https://github.com/steadylearner/Rust-Full-Stack/tree/master/warp/database/2.%20with_db_pool).
98
98
99
-
* Currently, error responses from Warp relevant code are not perfect. It will be only worth doing that if you develop it with frontend part also.
99
+
* Currently, error responses from Warp relevant code are not that relevant. It will be only worth doing that if you develop it with frontend part also.
100
100
101
-
* User session needs a timeout relevant code. You can find better solutions or use [prebuilt ones such as Redis etc](https://github.com/steadylearner/Rust-Full-Stack/tree/master/microservices_with_docker).
101
+
* User session needs the timeout relevant code. You can find better solutions or use [prebuilt ones such as Redis etc](https://github.com/steadylearner/Rust-Full-Stack/tree/master/microservices_with_docker).
102
102
103
103
*[Include tests](https://github.com/steadylearner/Rust-Full-Stack/tree/master/microservices_with_docker/warp_client/src/tests/user) for every possible routes instead of CURL commands.
104
104
@@ -112,4 +112,4 @@ I did code with it a few months ago so they are only what I can think currently
112
112
113
113
There are not many Rust web server examples. I wouldn't write this way again if the development were for myself. But, hope you can save the compile time with it at least.
114
114
115
-
Frontend part is up to you. I wrote it because I had to make a demo video to get payment. [You can implement it on your own](https://github.com/steadylearner/Rust-Full-Stack/tree/master/parcel-react) referring to the example above.
115
+
Frontend part is up to you. [You can implement it on your own](https://github.com/steadylearner/Rust-Full-Stack/tree/master/parcel-react) referring to the example above.
0 commit comments