@progressively/cli
v1.0.0-alpha.5
Published
CLI to manage Progressively feature flags
Downloads
8
Readme
@progressively/cli
Progressively is a simple, lightweight and OpenSource feature flag software.
This repository contains the CLI
- [x] Administrator account creation
- [x] Authentication
- [x] Project creation/deletion
- [x] Flag manipulation
- [x] Types generation
Quickstart
npm i -g @progressively/cli
progressively duck
Demo
Summary
Usage
$ npm install -g @progressively/cli
$ progressively COMMAND
running command...
$ progressively (--version)
@progressively/cli/1.0.0-alpha.4 darwin-arm64 node-v18.17.1
$ progressively --help [COMMAND]
USAGE
$ progressively COMMAND
...
Commands
progressively config
progressively duck
progressively flag
progressively help [COMMANDS]
progressively login
progressively me
progressively project
progressively register
progressively types
progressively config
Configure the Progressively CLI
USAGE
$ progressively config [--show]
FLAGS
--show Display the current configuration for the user
DESCRIPTION
Configure the Progressively CLI
EXAMPLES
$ progressively config
See code: src/commands/config.ts
progressively duck
Try it, you won't regret it
USAGE
$ progressively duck
DESCRIPTION
Try it, you won't regret it
EXAMPLES
$ progressively duck
See code: src/commands/duck.ts
progressively flag
Manipulate flags
USAGE
$ progressively flag [-C] [--create-only]
FLAGS
-C, --create Create a flag and update existing
--create-only Only create a flag
DESCRIPTION
Manipulate flags
EXAMPLES
$ progressively flag
See code: src/commands/flag.ts
progressively help [COMMANDS]
Display help for progressively.
USAGE
$ progressively help [COMMANDS] [-n]
ARGUMENTS
COMMANDS Command to show help for.
FLAGS
-n, --nested-commands Include all nested commands in the output.
DESCRIPTION
Display help for progressively.
See code: @oclif/plugin-help
progressively login
Authenticate to store tokens in config
USAGE
$ progressively login
DESCRIPTION
Authenticate to store tokens in config
EXAMPLES
$ progressively login
See code: src/commands/login.ts
progressively me
Provide fullname and email of the current user
USAGE
$ progressively me
DESCRIPTION
Provide fullname and email of the current user
EXAMPLES
$ progressively me
See code: src/commands/me.ts
progressively project
Manage project (select current, create or delete one)
USAGE
$ progressively project [-C] [-D]
FLAGS
-C, --create Create a project before selection
-D, --delete Delete a project
DESCRIPTION
Manage project (select current, create or delete one)
EXAMPLES
$ progressively project
See code: src/commands/project.ts
progressively register
Register an admin user
USAGE
$ progressively register
DESCRIPTION
Register an admin user
EXAMPLES
$ progressively register
See code: src/commands/register.ts
progressively types
Generate types based on your Progressively instance
USAGE
$ progressively types
DESCRIPTION
Generate types based on your Progressively instance
EXAMPLES
$ progressively types
See code: src/commands/types.ts