microkit-cli 0.34.0

MicroKit CLI tool for managing your services
microkit-cli-0.34.0 is not a library.

MicroKit CLI

CLI tool for creating and managing MicroKit services.

Installation

cargo install microkit-cli

Or build from source:

cargo install --path crates/microkit-cli

Usage

The CLI is available as mk after installation.

Create a new service

mk new <service-name>

Setup environment

mk setup

Run all services with Dapr

mk all

Run a specific binary

mk run <binary-name>

Database commands

Generate entities from database schema:

mk db entity

Create a new migration:

mk db migrate <migration-name>

Drop and recreate database:

mk db fresh