/ziro-cli

Primary LanguageJavaScript

Ziro CLI

This is a command line tool for using the Ziro projects.

A Ziro Project

Install

npm install --global ziro-app

Commands

Create

ziro create app example-app

This will create a Ziro app in the example-app directory.

Contributing

Clone the repo and then run npm link.

cd ziro-cli
npm link
npm run watch
cd ../../ # Some other directory
npm link ziro-cli
ziro help # This will run from your local.

Publishing

npm run build
npm add .
npm commit -m "Something"
npm push origin main
npm publish