CLI to create web services with Actix
--request-logger
flagUnwrap
s to Crate Error--auth
flagConfig.toml
Config.toml
Not defining a Database will mean a
Context
will be created to support a basicHashMap
.
make setup
or visit https://rustup.rs/./usr/local/bin
is in PATH
.make build
.
- Windows not yet supported
```sh actix-cli 0.1.0 A CLI to create actix-web projects boilerplate
USAGE:
actix-cli [OPTIONS] --context
FLAGS: -h, --help Prints help information -V, --version Prints version information
OPTIONS:
-c, --config-file InMemory
allowed [possible
values: InMemory]
-f, --fault-tolerant [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]
```
fault-tolerant
: bool
.request-logger
: bool
.name
: String
.config-file
: std::path::PathBuf
.context
: case insetive enum containing InMemory
and in the future PostgresDB
and DynamoDB
.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
A few examples of Config.toml
.
```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" ```
name
is required.routes
is required, all routes should be Strings.routes
don't start with name
, name
will bem added to them.model
is required, all types should be Strings with valid Rust types.