Skip to content

Latest commit

 

History

History
61 lines (44 loc) · 1.44 KB

File metadata and controls

61 lines (44 loc) · 1.44 KB

ZyroHub - CLI

A CLI Utility using the ZyroHub Ecosystem, designed to streamline project creation and management.

Table of Contents

Usage Without Installation

You can use the CLI without installing it globally.

# npm
npx @zyrohub/cli create

Getting Started

To install the CLI globally, use one of the following package managers:

NPM Repository

# npm
npm install -g @zyrohub/cli
# yarn
yarn global add @zyrohub/cli
# pnpm
pnpm add -g @zyrohub/cli
# bun
bun add -g @zyrohub/cli

Commands

Create Project

Scaffolds a new project with the ZyroHub ecosystem structure, handling all necessary configurations automatically.

zyrohub create [projectName]

The CLI will interactively ask for the following configurations:

  • Project Type: Application, Module, or Other.
  • Features: Cluster support, DotEnv, Library fields (exports/publishConfig).
  • Metadata: Name, Description, Author, Repository.
  • Git: Automatic initialization (`git init`).
  • Package Manager: NPM, Yarn, PNPM, or Bun.
  • Formatting: Prettier configuration.