Skip to main content

Project Management

The MachineMetrics CLI provides commands to create and manage new projects based on templates.

Create Command

mmdev create [options] <name>

Creates a new project based on a specified template.

Options

OptionDescription
-t, --template <template>Template name (e.g., react, module)
-o, --out-path <outPath>Path where the project will be created (defaults to project name)
-h, --helpDisplay help for command

Examples

# Create a new React project in a <name> directory
mmdev create my-app -t react

# Create a new module project in a specific directory
mmdev create my-module -t module -o ./modules/my-module

Usage Example

  1. Create a new React application:

    mmdev create my-app -t react
  2. Create a new module in a specific directory:

    mmdev create my-module -t module -o ./modules/my-module