# admin-ui-extensions-template **Repository Path**: mirrors_Shopify/admin-ui-extensions-template ## Basic Information - **Project Name**: admin-ui-extensions-template - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: main - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2021-06-18 - **Last Updated**: 2026-03-15 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Shopify Admin UI Extensions - Starter code This repo contains starter code for apps that extend the UI of the _Shopify Admin_. For more about _UI extensions_ please [read our docs](https://shopify.dev/tutorials/product-subscription-extension-overview). ## Getting started [Use the Shopify App CLI to create your UI extension](https://shopify.dev/tutorials/getting-started-product-subscription-extension#scaffold-a-product-subscription-app-extension). **Note:** We do _not_ recommend app developers to clone this repo directly. If you choose to do so, you will need to follow the instructions below to generate the starter code, and then set up the Shopify App CLI manually to use your extension. ## Updating this repo Shopify developers working on this repo will find most of the relevant code in the [`scripts/generate`](/scripts/generate). Start by cloning this repo: ```sh git clone git@github.com:Shopify/admin-ui-extensions-template.git YOUR_EXTENSION_NAME ``` Then, generate the starter code: ```sh cd YOUR_EXTENSION_NAME # With npm npm install npm run generate -- --type=PRODUCT_SUBSCRIPTION # With yarn yarn yarn generate --type=PRODUCT_SUBSCRIPTION ``` _**Note:** Currently `PRODUCT_SUBSCRIPTION` and `DEFAULT` are the only supported extension types._ Finally, inspect the result of the `generate` command: ```sh git diff ```