actix-cli

CLI to create web services with Actix

Not defining a Database will mean a Context will be created to support a basic HashMap.

Installing

  1. If you don't have Rust in your computer you can run make setup or visit https://rustup.rs/.
  2. Make sure your /usr/local/bin is in PATH.
  3. Than run make build.

Usage

```sh actix-cli 0.1.0 A CLI to create actix-web projects boilerplate

USAGE: actix-cli [OPTIONS] --context --name

FLAGS: -h, --help Prints help information -V, --version Prints version information

OPTIONS: -c, --config-file Config.toml file path --context Which database configuration. Currently only InMemory allowed [possible values: InMemory] -f, --fault-tolerant Enables Bastion for fault tolerant system [default: true] -n, --name Defines project name in Cargo.toml -r, --request-logger Enables request logger as [IP:%a DATETIME:%t REQUEST:\"%r\" STATUS: %s DURATION:%D X-REQUEST-ID:%{x-request-id}o] and"[x-request-id: Uuid::new_v4()]` [default: true] ```

Example

By executing command actix-cli -n maluco-cli -r true -f true --config-file actix-cli/Config.toml --context inmemory with the Config.toml as defined below in CRUD section the result is found in the repo

Confit.toml

A few examples of Config.toml.

CRUD

```toml [crud] name = "object"

[crud.routes] create = "object/new" read = "object/get/{id}" update = "object/update/{id}" delete = "object/delete/{id}" list = "object/get"

[crud.model] name = "String" age = "usize" school = "String" ```