# argo-admin-template **Repository Path**: mirrors_Shopify/argo-admin-template ## Basic Information - **Project Name**: argo-admin-template - **Description**: Template repository for App Extensions build with Shopify/shopify-app-cli - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-08-19 - **Last Updated**: 2026-02-14 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Shopify Admin, app extensions - Starter code This repo contains starter code for apps that use _Argo_ to extend the UI of the _Shopify Admin_. For more about _Argo_ and admin extensions, please [read our docs](https://shopify.dev/tutorials/product-subscription-extension-overview). ## Getting started [Use the Shopify App CLI to create your _Argo_-enabled 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/argo-admin-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 ```