--- title: Start building for customer accounts description: >- Learn how to set up your development environment to begin developing a customer account UI extension. source_url: html: 'https://shopify.dev/docs/apps/build/customer-accounts/start-building' md: 'https://shopify.dev/docs/apps/build/customer-accounts/start-building.md' --- # Start building for customer accounts Get started building customer account UI extensions by setting up your development environment. You'll use [Shopify CLI](https://shopify.dev/docs/apps/build/cli-for-apps) to generate starter code for building your extension and automating common development tasks. *** ## General requirements * You're a [user with app development permissions](https://shopify.dev/docs/apps/build/dev-dashboard/user-permissions) and have created a [dev store](https://shopify.dev/docs/apps/build/dev-dashboard/development-stores). - You're using the latest version of [Shopify CLI](https://shopify.dev/docs/api/shopify-cli). - You're using the latest version of [Chrome](https://www.google.com/chrome/) or [Firefox](https://www.mozilla.org/). * The dev store should be pre-populated with test data, including an order that's associated with the email address you'll use to log in to the customer account experience. ### Steps 1. Run the following command to scaffold an app: ## Terminal ```terminal shopify app init ``` 2. Select `Build an extension-only app`. 3. Navigate to your app directory: ## Terminal ```terminal cd ``` 4. Run the following command to create a new extension: ## Terminal ```terminal shopify app generate extension --name my-extension ``` 5. Choose `Customer account UI`. 6. Start your development server to build your app and preview your extension: ## Terminal ```terminal shopify app dev ``` *** ## Next steps * Build an [inline extension](https://shopify.dev/docs/apps/build/customer-accounts/inline-extensions/build-order-status) that displays loyalty points and enables customers to leave a review. * Build an [order action menu extension](https://shopify.dev/docs/apps/build/customer-accounts/order-action-extensions/build-for-order-action-menus) that enables customers to report problems with their orders. * Build a [full-page extension](https://shopify.dev/docs/apps/build/customer-accounts/full-page-extensions/build-new-pages) for customers to add and edit products on a wishlist. * Explore the [customer account UI extensions reference](https://shopify.dev/docs/api/customer-account-ui-extensions) for available targets, target APIs, and web components. ***