Rope Retail CLI to manage the Rope Retail ecosystem
$ npm install -g @roperetail/cli
$ rope COMMAND
running command...
$ rope (--version)
@roperetail/cli/1.2.60 darwin-x64 node-v22.2.0
$ rope --help [COMMAND]
USAGE
$ rope COMMAND
...
rope distribute
rope generate TEMPLATE TYPE
rope help [COMMAND]
rope plugins
rope plugins add PLUGIN
rope plugins:inspect PLUGIN...
rope plugins install PLUGIN
rope plugins link PATH
rope plugins remove [PLUGIN]
rope plugins reset
rope plugins uninstall [PLUGIN]
rope plugins unlink [PLUGIN]
rope plugins update
rope switch-store STOREUUID
Build and deploy the web app for multiple stores at once
USAGE
$ rope distribute [--storeUuid <value>]
FLAGS
--storeUuid=<value>
DESCRIPTION
Build and deploy the web app for multiple stores at once
See code: src/commands/distribute.ts
Generate the services or pages for Rope Retail Ecommerce
USAGE
$ rope generate TEMPLATE TYPE
DESCRIPTION
Generate the services or pages for Rope Retail Ecommerce
See code: src/commands/generate.ts
Display help for rope.
USAGE
$ rope help [COMMAND...] [-n]
ARGUMENTS
COMMAND... Command to show help for.
FLAGS
-n, --nested-commands Include all nested commands in the output.
DESCRIPTION
Display help for rope.
See code: @oclif/plugin-help
List installed plugins.
USAGE
$ rope plugins [--json] [--core]
FLAGS
--core Show core plugins.
GLOBAL FLAGS
--json Format output as json.
DESCRIPTION
List installed plugins.
EXAMPLES
$ rope plugins
See code: @oclif/plugin-plugins
Installs a plugin into rope.
USAGE
$ rope plugins add PLUGIN... [--json] [-f] [-h] [-s | -v]
ARGUMENTS
PLUGIN... Plugin to install.
FLAGS
-f, --force Force npm to fetch remote resources even if a local copy exists on disk.
-h, --help Show CLI help.
-s, --silent Silences npm output.
-v, --verbose Show verbose npm output.
GLOBAL FLAGS
--json Format output as json.
DESCRIPTION
Installs a plugin into rope.
Uses bundled npm executable to install plugins into /Users/bashoogzaad/.local/share/rope
Installation of a user-installed plugin will override a core plugin.
Use the ROPE_NPM_LOG_LEVEL environment variable to set the npm loglevel.
Use the ROPE_NPM_REGISTRY environment variable to set the npm registry.
ALIASES
$ rope plugins add
EXAMPLES
Install a plugin from npm registry.
$ rope plugins add myplugin
Install a plugin from a github url.
$ rope plugins add https://github.com/someuser/someplugin
Install a plugin from a github slug.
$ rope plugins add someuser/someplugin
Displays installation properties of a plugin.
USAGE
$ rope plugins inspect PLUGIN...
ARGUMENTS
PLUGIN... [default: .] Plugin to inspect.
FLAGS
-h, --help Show CLI help.
-v, --verbose
GLOBAL FLAGS
--json Format output as json.
DESCRIPTION
Displays installation properties of a plugin.
EXAMPLES
$ rope plugins inspect myplugin
See code: @oclif/plugin-plugins
Installs a plugin into rope.
USAGE
$ rope plugins install PLUGIN... [--json] [-f] [-h] [-s | -v]
ARGUMENTS
PLUGIN... Plugin to install.
FLAGS
-f, --force Force npm to fetch remote resources even if a local copy exists on disk.
-h, --help Show CLI help.
-s, --silent Silences npm output.
-v, --verbose Show verbose npm output.
GLOBAL FLAGS
--json Format output as json.
DESCRIPTION
Installs a plugin into rope.
Uses bundled npm executable to install plugins into /Users/bashoogzaad/.local/share/rope
Installation of a user-installed plugin will override a core plugin.
Use the ROPE_NPM_LOG_LEVEL environment variable to set the npm loglevel.
Use the ROPE_NPM_REGISTRY environment variable to set the npm registry.
ALIASES
$ rope plugins add
EXAMPLES
Install a plugin from npm registry.
$ rope plugins install myplugin
Install a plugin from a github url.
$ rope plugins install https://github.com/someuser/someplugin
Install a plugin from a github slug.
$ rope plugins install someuser/someplugin
See code: @oclif/plugin-plugins
Links a plugin into the CLI for development.
USAGE
$ rope plugins link PATH [-h] [--install] [-v]
ARGUMENTS
PATH [default: .] path to plugin
FLAGS
-h, --help Show CLI help.
-v, --verbose
--[no-]install Install dependencies after linking the plugin.
DESCRIPTION
Links a plugin into the CLI for development.
Installation of a linked plugin will override a user-installed or core plugin.
e.g. If you have a user-installed or core plugin that has a 'hello' command, installing a linked plugin with a 'hello'
command will override the user-installed or core plugin implementation. This is useful for development work.
EXAMPLES
$ rope plugins link myplugin
See code: @oclif/plugin-plugins
Removes a plugin from the CLI.
USAGE
$ rope plugins remove [PLUGIN...] [-h] [-v]
ARGUMENTS
PLUGIN... plugin to uninstall
FLAGS
-h, --help Show CLI help.
-v, --verbose
DESCRIPTION
Removes a plugin from the CLI.
ALIASES
$ rope plugins unlink
$ rope plugins remove
EXAMPLES
$ rope plugins remove myplugin
Remove all user-installed and linked plugins.
USAGE
$ rope plugins reset [--hard] [--reinstall]
FLAGS
--hard Delete node_modules and package manager related files in addition to uninstalling plugins.
--reinstall Reinstall all plugins after uninstalling.
See code: @oclif/plugin-plugins
Removes a plugin from the CLI.
USAGE
$ rope plugins uninstall [PLUGIN...] [-h] [-v]
ARGUMENTS
PLUGIN... plugin to uninstall
FLAGS
-h, --help Show CLI help.
-v, --verbose
DESCRIPTION
Removes a plugin from the CLI.
ALIASES
$ rope plugins unlink
$ rope plugins remove
EXAMPLES
$ rope plugins uninstall myplugin
See code: @oclif/plugin-plugins
Removes a plugin from the CLI.
USAGE
$ rope plugins unlink [PLUGIN...] [-h] [-v]
ARGUMENTS
PLUGIN... plugin to uninstall
FLAGS
-h, --help Show CLI help.
-v, --verbose
DESCRIPTION
Removes a plugin from the CLI.
ALIASES
$ rope plugins unlink
$ rope plugins remove
EXAMPLES
$ rope plugins unlink myplugin
Update installed plugins.
USAGE
$ rope plugins update [-h] [-v]
FLAGS
-h, --help Show CLI help.
-v, --verbose
DESCRIPTION
Update installed plugins.
See code: @oclif/plugin-plugins
Enables you to switch the store for the dev environment.
USAGE
$ rope switch-store STOREUUID
DESCRIPTION
Enables you to switch the store for the dev environment.
See code: src/commands/switch-store.ts