Skip to content

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

17 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Rocket, Diesel, MySQL, Rest API Tutorial

Build Restful CRUD API for a managing heroes within our Database using Rocket and Diesel.

Requirements

  1. Rust and Cargo - 1.26.0 (nightly)

  2. Diesel CLI - 1.1.0

  3. Mysql - 5.x.x

Steps to Setup

1. Clone the application

git clone https://github.com/sean3z/rocket-diesel-rest-api-example.git

2. Create DATABASE_URL environment variable

export DATABASE_URL=mysql://user:pass@localhost/heroes

3. Run Database migration

diesel migration run

4. Build and run the app using cargo

cargo build --release && cd target/release/
sudo ROCKET_ENV=prod ./hero-api

The app will start running at http://localhost:80.

Alternatively, you can run the app in development mode -

cargo run

Explore Rest APIs

The app defines following CRUD APIs.

GET /heroes

POST /hero

PUT /hero/{heroId}

DELETE /hero/{heroId}

You can test them using postman or any other rest client.

Learn more

You can find the tutorial for this application on my blog -

https://medium.com/p/1867308352d8/

About

Store your favorite superheroes with this simple example in Rust

Resources

Stars

134 stars

Watchers

3 watching

Forks

Releases

Packages

Used by

Contributors

Languages