Skip to main content

Command Line Tool

The Command Line Tool enables you to rapidly build apps on the MachineMetrics platform. It provides commands for authentication, project creation, and configuration management.

Installation

You can install the CLI using the following command on macOS, Linux, or Windows via WSL:

/bin/bash -c "$(curl -fsSL https://machinemetrics-public.s3.us-west-2.amazonaws.com/MMDevCli/install_cli.sh)" && exec $SHELL -l

Quick Start

Here's a typical flow for getting started with your first app:

# Log in to your MachineMetrics account
mmdev login

# Initialize OAuth development environment
mmdev oauth dev-init

# Create a new React application
mmdev create my-first-app --template react

# Navigate to the app directory and start the development environment
cd my-first-app/app
docker compose up --build

Available Commands

The MachineMetrics CLI provides several categories of commands:

Getting Help

mmdev --help              # Display general help
mmdev help [command] # Display help for a specific command
mmdev --version # Display the current version