/rust-warp-api

working rest api example of a restaurant project using warp framework in rust

Primary LanguageRust

Simple Restaurant API

Getting Started (Application Server)

  1. Change to Project Directory::
cd application_server
  1. Install Dependencies:: (Make sure you have rust and cargo installed)
cargo build
  1. Run the test cases::
cargo test
  1. Run the project::
cargo run

This starts the server, and you can access the API at http://localhost:3030.

Getting Started (Client Server)

  1. Change to Project Directory::
cd client_server
  1. Install Dependencies:: (Make sure you have rust and cargo installed)
cargo build
  1. Run the project::
cargo run