Skip to main content

Qumra CLI

The Qumra CLI is the command-line tool for building themes and apps on the Qumra platform. Commands follow the pattern qumra [topic] [command].

Installation

npm install -g qumra-cli
Login Required

You must run qumra user login before using any other commands.

Command Overview

TopicCommandsDescription
userlogin, logout, infoAuthentication
themeinit, dev, publish, bundle, patch, minor, majorTheme development
appinit, dev, deployApp development
genwidgetCode generation

Quick Start: Theme Development

# 1. Login to Qumra Cloud
qumra user login

# 2. Create a new theme
qumra theme init

# 3. Start development server
cd my-theme
qumra theme dev

Output:

🚀 Server started successfully!

📡 Localhost → http://localhost:3000
🌍 Theme URL → https://my-store.qumra.store?theme=abc123
📦 Customize Theme → https://app.qumra.cloud/store/my-store/themes/abc123

Quick Start: App Development

# 1. Login to Qumra Cloud
qumra user login

# 2. Create a new app
qumra app init

# 3. Start development server
cd my-app
qumra app dev

Upgrade CLI

Check your current version:

qumra version

Update to the latest:

npm install -g qumra-cli@latest

Get Help

qumra help
qumra theme --help
qumra app --help

Resources