Finqu CLI
Finqu CLI is a command-line tool for working with the Finqu unified commerce platform. Today, it focuses on theme development workflows (configure, download, deploy, watch), and it’s designed to expand over time.
Install
Install globally with npm:
npm install -g @finqu/cliVerify installation:
finqu --versionQuick start (theme development)
- Sign in:
finqu sign-in- Connect your local project to a theme:
finqu theme configure- Download theme assets:
finqu theme download- Start a development loop:
finqu theme watchWhat’s in the CLI docs
- Authentication: how
finqu sign-inworks and how credentials/tokens are handled. See Authentication. - Theme: reference + examples for
finqu themecommands. See Theme. - Configuration:
finqu.config.json, environments, and config precedence. See Configuration. - Troubleshooting: common issues and how to debug. See Troubleshooting.
Global options
These options can be used with most commands:
| Option | Description | Default |
|---|---|---|
-v, --verbose | Enable detailed logging output | false |
-e, --env <environment> | Specify the configuration environment to use | production |
-c, --config <path> | Path to the configuration file | ./finqu.config.json |
--help | Display help information | |
--version | Display version information |