Purpose of this project is to create a full-fledged E-commerce server with Rust using Rocket framework.
After completing the Rust book, it seems a logical step to create a real-world example. since I've already created E-commerce server multiple time with NodeJS, it seems to be the right choice to do the same with Rust 😅
//TODO
- Clone the repository
- Make sure you have latest stable version of rust installed on your machine. After installing rust, check your rust compiler version with
rustc --version. I'm using version1.72.0 - Go to current reposity
- run
cargo build - run
cargo run - Server should be started at
http://127.0.0.1:8000 - To run the server in watch mode so you don't have to run
cargo runafter file change, first install
cargo install cargo-watch
``
then run
cargo watch -x run
- [] Read about the Async Programming in Rust