https://github.com/anotherrusty/rust-web-boilerplate
https://github.com/anotherrusty/rust-web-boilerplate
Last synced: 10 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/anotherrusty/rust-web-boilerplate
- Owner: AnotherRusty
- License: mit
- Created: 2024-05-29T11:52:33.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2024-05-29T12:10:23.000Z (over 1 year ago)
- Last Synced: 2024-09-15T19:14:40.107Z (about 1 year ago)
- Language: Rust
- Size: 13.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Rust Web Boilerplate
[](https://travis-ci.org/svenstaro/rust-web-boilerplate)
[](https://codecov.io/gh/svenstaro/rust-web-boilerplate)
[](https://github.com/svenstaro/rust-web-boilerplate)
[](https://github.com/svenstaro/rust-web-boilerplate/blob/master/LICENSE)
## About
This is a boilerplate project made using best practices for getting started quickly
in a new project. I made this for myself but maybe it will help someone else. Pull
requests and discussions on best practices welcome!
## Development setup
Install a few external dependencies and make sure `~/.cargo/bin` is in your `$PATH`:
cargo install diesel_cli
cargo install cargo-watch
Optionally if you want line coverage from your tests, install cargo-tarpaulin:
cargo-tarpaulin
Copy `.env.example` to `.env` and update your application environment in this file.
Make sure you have a working local postgres setup. Your current user should be
admin in your development postgres installation and it should use the "peer" or
"trust" auth methods (see `pg_hba.conf`).
Now you can launch the `watch.sh` script which helps you quickly iterate. It
will remove and recreate the DB and run the migrations and then the tests on
all code changes.
./watch.sh
To get line coverage, do
cargo tarpaulin --ignore-tests