Skip to content
This repository has been archived by the owner on May 26, 2022. It is now read-only.

Latest commit

 

History

History
215 lines (153 loc) · 4.42 KB

documentation.md

File metadata and controls

215 lines (153 loc) · 4.42 KB

Usage & Commands

$ npm install -g parago
$ pgo COMMAND
running command...
$ pgo (-v|--version|version)
parago/0.0.3 darwin-x64 node-v12.5.0
$ pgo --help [COMMAND]
USAGE
  $ pgo COMMAND
...

Available Commands:

pgo create [PROJECT]

Create a new Parago project

USAGE
  $ pgo create [PROJECT]

OPTIONS
  -g, --generator=generator  (required) Generator to use to create project.
  -h, --help                 Shows this help message
  -y, --yes                  Answers all prompts with defaults.
  --env=env                  Sets environment variables, overriding project config file)

EXAMPLE
  $ pgo create myproject

See code: src/commands/create.ts

pgo data [ACTION] [LOAD]

Training data management using provided commands in parago.yml under data:.

USAGE
  $ pgo data [ACTION] [LOAD]

ARGUMENTS
  ACTION  Cleans data using command in config file
  LOAD    Loads data using command in config file

OPTIONS
  -h, --help  Shows this help message
  --env=env   Sets environment variables, overriding project config file)

EXAMPLES
  $ pgo data clean
  $ pgo data load

See code: src/commands/data.ts

pgo deploy

Model deplpoyment using defined command in parago.yml under deploy:.

USAGE
  $ pgo deploy

OPTIONS
  -h, --help  Shows this help message
  --env=env   Sets environment variables, overriding project config file)

EXAMPLE
  $ pgo deploy

See code: src/commands/deploy.ts

pgo export

Model export/conversion using defined command in parago.yml under export:.

USAGE
  $ pgo export

OPTIONS
  -h, --help  Shows this help message
  --env=env   Sets environment variables, overriding project config file)

EXAMPLE
  $ pgo export

See code: src/commands/export.ts

pgo help [COMMAND]

Display help for pgo.

USAGE
  $ pgo help [COMMAND]

ARGUMENTS
  COMMAND  command to show help for

OPTIONS
  --all  see all commands in CLI

See code: @oclif/plugin-help

pgo list

Shows a list of available generators.

USAGE
  $ pgo list

OPTIONS
  -h, --help  Shows this help message
  --env=env   Sets environment variables, overriding project config file)

EXAMPLE
  $ pgo train

See code: src/commands/list.ts

pgo run

Run user defined tasks outlined in parago.yml under tasks:.

USAGE
  $ pgo run

OPTIONS
  -h, --help  Shows this help message
  --env=env   Sets environment variables, overriding project config file)

EXAMPLE
  $ pgo run <task>

See code: src/commands/run.ts

pgo setup

Sets up Parago.

USAGE
  $ pgo setup

OPTIONS
  -f, --force  If already setup, remove previous and setup as new
  -h, --help   Shows this help message
  --env=env    Sets environment variables, overriding project config file)

EXAMPLE
  $ pgo setup

See code: src/commands/setup.ts

pgo train

Train model using defined command in parago.yml under train:.

USAGE
  $ pgo train

OPTIONS
  -h, --help  Shows this help message
  --env=env   Sets environment variables, overriding project config file)

EXAMPLE
  $ pgo train

See code: src/commands/train.ts

pgo update

Update Parago.

USAGE
  $ pgo update

OPTIONS
  -h, --help  Shows this help message
  --env=env   Sets environment variables, overriding project config file)

EXAMPLE
  $ pgo update

See code: src/commands/update.ts