How to run Shopify Theme as a developer?

Running a Shopify theme as a developer involves setting up a local development environment, making changes to the theme, and previewing them on a Shopify store. Here’s a step-by-step guide:


Prerequisites

Before you start, make sure you have the following:

# Open the terminal and run below commands
npm install -g @shopify/cli@latest

# For help
shopify help

# For show version
shopify version


Clone or Download the Theme

If the theme is on GitHub, clone it using:

git clone https://github.com/YOUR-USERNAME/YOUR-THEME-REPO.git

# Example
git clone https://github.com/shopifyengine/shopify-theme-20-exp-min.git

Otherwise, download the theme from source.


Run the theme

shopify theme dev --store your-store-name.myshopify.com

Note : It will ask for login to the Partner Account

What this does: