Skip to content

Latest commit

 

History

History
78 lines (59 loc) · 1.61 KB

README.md

File metadata and controls

78 lines (59 loc) · 1.61 KB

Usage

$ npm install -g @blockstack/clarity-cli
$ clarity COMMAND
running command...
$ clarity (-v|--version|version)
@blockstack/clarity-cli/0.1.10-alpha.0 darwin-x64 node-v10.15.3
$ clarity --help [COMMAND]
USAGE
  $ clarity COMMAND
...

Commands

clarity help [COMMAND]

display help for clarity

USAGE
  $ clarity help [COMMAND]

ARGUMENTS
  COMMAND  command to show help for

OPTIONS
  --all  see all commands in CLI

See code: @oclif/plugin-help

clarity new PROJECT

Generate new project

USAGE
  $ clarity new PROJECT

OPTIONS
  -h, --help      show CLI help
  --skip_install  Skip running `npm install` after project generation.

EXAMPLE
  $ clarity new <PROJECT_NAME>

See code: src/commands/new.ts

clarity setup

Install blockstack-core and its dependencies

USAGE
  $ clarity setup

OPTIONS
  --from_source  Compile binary from Rust source instead of downloading distributable.
  --overwrite    Overwrites an existing installed clarity-cli bin file.

EXAMPLE
  $ clarity setup

See code: src/commands/setup.ts