Servust

Servust is a simple CLI tool to create a new project from a template, kind of like npx create-react-app but for rust frameworks project.

![crates.io version] ![Crates.io Downloads] ![crates.io license] ![Github image]

Installation

Haven't published it anywhere yet, so you'll have to install it using cargo build --release and then copy the binary to your path.

Usage

```bash USAGE: servust [OPTIONS] --framework --orm

ARGS: The name of the server

OPTIONS: -d, --database database to be used (postgres, mysql, sqlite) default: postgres -f, --framework library/framework to be used (actix, warp, axum, tonic) -h, --help Print help information -o, --orm ORM to be used (diesel, sea-orm) -V, --version Print version information ```

Example

bash servust --framework actix --orm diesel my-server