Skip to content

Motanamy CLI Tool

The Motanamy CLI helps you create, develop, and deploy applications for EA, SA, and OS platforms.

Installation

bash
npm install -g motanamy-cli

Quick Start

Create a New App

bash
mot create my-app --type EA  # For Enterprise Application
mot create my-app --type SA  # For Standalone Application
mot create my-app --type OS  # For Operating System

Download and install the Motanamy app, then link it:

bash
mot link add

Develop & Run

bash
cd my-app
mot run  # Start development server

Build & Upload

bash
mot build      # Build for production
mot upload     # Upload to Motanamy Store

Technology Stack

Frontend/Dashboard:

  • Vue.js with PrimeVue and PrimeFlex

Backend:

  • NestJS, Express.js, or Node.js

Microservices:

  • Any programming language

All Commands

  • mot create <name> --type <EA|SA|OS> - Create new app
  • mot link add - Link installed Motanamy app
  • mot run - Start development server
  • mot build - Build for production
  • mot upload - Upload to store
  • mot help - Show all commands

Need Help?

Options

  • <plugin-name>: The name of your plugin.
  • --type <application-type>: The type of application (SA, OS, EA).

Example:

sh
mot create my-plugin --type EA