An open API service indexing awesome lists of open source software.

https://github.com/cuchi/rust-web-backend-boilerplate

Small boilerplate for backend projects in Rust
https://github.com/cuchi/rust-web-backend-boilerplate

Last synced: 2 months ago
JSON representation

Small boilerplate for backend projects in Rust

Awesome Lists containing this project

README

          

# Rust Backend Boilerplate

This little project is a boilerplate that features:

- Rust
- Rocket
- Diesel (with PostgreSQL)

## What it does?

It will just be same old Todo CRUD with user authentication. This is intended
to be used as a starting point for a new project in this stack.

## Running

Just ensure that PostgreSQL is running with the credentials defined in the
`.env` and the `Rocket.toml` files, then run `cargo run`.

## TODO

- [ ] Add authentication
- [ ] Add tests
- [ ] Add a `docker-compose.yml`
- [ ] Implement the small feature set of the CRUD