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
- Host: GitHub
- URL: https://github.com/cuchi/rust-web-backend-boilerplate
- Owner: cuchi
- Created: 2021-10-10T20:40:36.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2021-10-10T23:48:59.000Z (over 4 years ago)
- Last Synced: 2025-03-23T05:24:09.468Z (over 1 year ago)
- Language: Rust
- Size: 13.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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