- Introduced a new CLI application in the `apps/cli` directory. - Implemented commands for database migration and entity generation. - Updated `Cargo.toml` files to include necessary dependencies. - Enhanced the `justfile` to facilitate CLI command execution. - Modified workspace configuration to include the new CLI application.
14 lines
201 B
TOML
14 lines
201 B
TOML
[workspace]
|
|
members = [
|
|
"apps/container",
|
|
"apps/cli",
|
|
"public/shared",
|
|
"public/database",
|
|
"public/migration"
|
|
]
|
|
|
|
resolver = "3"
|
|
|
|
[workspace.lints.clippy]
|
|
module_inception = "allow"
|