# aio-cli-plugin-commerce-admin **Repository Path**: mirrors_adobe/aio-cli-plugin-commerce-admin ## Basic Information - **Project Name**: aio-cli-plugin-commerce-admin - **Description**: No description available - **Primary Language**: Unknown - **License**: Apache-2.0 - **Default Branch**: develop - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2022-02-25 - **Last Updated**: 2026-02-28 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Installation ## Prerequisites - [aio-cli](https://github.com/adobe/aio-cli). - [node.js](https://nodejs.org/en/) - [yarn](https://classic.yarnpkg.com/lang/en/docs/install). To install a revision from this repository: ``` $ aio plugins:install @adobe/aio-cli-plugin-api-mesh ``` To install globally from a released npm package: ``` $ aio plugins:install -g @adobe/aio-cli-plugin-api-mesh ``` To discover available aio packages: ``` $ aio discover -i ``` ### Local Development Install project dependencies. `yarn install` ``` aio plugins:link api-mesh ``` ### Configuration The plugin comes out of the box with configurations for stage and prod. The plugin by default connects to PROD dev console. To connect to STAGE instead: 1. Clear your config before switching the env ``` aio config clear ``` 2. Switch to stage environment ``` aio config set cli.env stage ``` #### Custom Configuration If you want to have custom configuration instead, please follow the steps below: 1. create a config.json file with the following parameters ``` { "baseUrl": "", "apiKey": "", "sourceRegistry: { "path": "" } } ``` 2. Perform the following command to update the configuration ``` aio config:set api-mesh.cliConfig ``` # Commands ``` aio api-mesh:describe aio api-mesh:get aio api-mesh:get PATH_OF_FILE_TO_DOWNLOAD_INTO aio api-mesh:create PATH_OF_MESH_CONFIG_JSON_FILE aio api-mesh:update PATH_OF_MESH_CONFIG_JSON_FILE aio api-mesh:delete aio api-mesh:status ``` All commands support `-i` or `--ignoreCache` flag that will force the CLI to ignore the cached Org, Project and Workspace details and prompt the user to select new options just for that action. Create, Update and Delete support `-c` or `--autoConfirmAction` flag that will not prompt the user for action confirmation mostly used for testing or scaffolding where user prompt can not be handled. This flag is only to be used in certain situations. # Sources Registry Source registry is a collection of predefined sources (API mesh source configurations) that are created to solve specific use cases. The source can be installed for customer-specific API mesh configuration. To submit a new source, please follow the instructions provided in the [Source Registry](https://github.com/adobe/api-mesh-sources/) repository. ## Commands ``` aio api-mesh:source:install SOURCE_NAME aio api-mesh:source:install SOURCE_NAME -v VARIABLE_NAME=VARIABLE_VALUE aio api-mesh:source:install SOURCE_NAME -f PATH_TO_FILE_WITH_VARIABLES aio api-mesh:source:get SOURCE_NAME aio api-mesh:source:get SOURCE_NAME@VERSION_OF_THE_SOURCE aio api-mesh:source:get -m aio api-mesh:source:discover ``` The "source:get" command accept multiple sources per one call. Example: ``` aio api-mesh:source:get -m @@ @ ``` All commands support `-i` or `--ignoreCache` flag that will force the CLI to ignore the cached Org, Project and Workspace details and prompt the user to select new options just for that action. Create, Update and Delete support `-c` or `--autoConfirmAction` flag that will not prompt the user for action confirmation mostly used for testing or scaffolding where user prompt can not be handled. This flag is only to be used in certain situations.