shopify-next-tailwind starter kit
This starter kit features Shopify, NextJS 13.4 and Tailwind CSS.
Overview
Tech Stack
Included Tooling
- Typescript - Type checking
- Storybook - Component library
- ESLint - Code linting
- Prettier - Code formatting
How to configure your Shopify store
This template requires a paid Shopify plan.
Note: This template will not work with a Shopify Starter plan as it does not allow installation of custom themes, which is required to run as a headless storefront.
Add Shopify domain to an environment variable
Create a SHOPIFY_STORE_DOMAIN environment variable and use your Shopify domain as the the value (ie. [your-shopify-store-subdomain].myshopify.com).
Note: Do not include the
https://.
Accessing the Shopify Storefront API
This template utilizes Shopify’s Storefront API to create unique customer experiences. The API offers a full range of commerce options making it possible for customers to control products, collections, menus, pages, cart, checkout, and more.
In order to use the Shopify’s Storefront API, you need to install the Headless app in your Shopify store.
Once installed, you’ll need to create a SHOPIFY_STOREFRONT_ACCESS_TOKEN environment variable and use the public access token as the value.
Note: Shopify does offer a Node.js Storefront API SDK. We use the Storefront API via GraphQL directly instead of the Node.js SDK so we have more control over fetching and caching.
Installation
You will need to use the environment variables defined in .env.example to run Next.js Commerce. A .env file is all that is necessary.
Note: You should not commit your
.envfile or it will expose secrets that will allow others to control your Shopify store.
This is a Next.js project bootstrapped with create-next-app.
You can start editing the page by modifying app/page.tsx. The page auto-updates as you edit the file.
This project uses next/font to automatically optimize and load Inter, a custom Google Font.
If you want to tag and create a release for your project during your development, you could find a GitHub Worflow template example in the GitHub Workflow folder inside the project.
CLI (Recommended)
npm create @this-dot/starter -- --kit shopify-next-tailwind
or
yarn create @this-dot/starter --kit shopify-next-tailwind
or
pnpm create @this-dot/starter --kit shopify-next-tailwind
- Follow the prompts to select the
shopify-next-tailwindstarter kit and name your new project. cdinto your project directory and runpnpm i.- Run
pnpm run devto start the development server. - Open your browser to
http://localhost:3000to see the included template project code running.
Manual
git clone https://github.com/thisdot/starter.dev.git
- Copy and rename the
starters/shopify-next-tailwinddirectory to the name of your new project. cdinto your project directory and runpnpm i.- Run
pnpm run devto start the development server. - Open your browser to
http://localhost:3000to see the included template project code running.
Commands
pnpm run start- Starts the development server.pnpm run dev- Equivalent topnpm run start, but uses127.0.0.1instead oflocalhostwhen opening browser.pnpm run build- Builds a compiled production version of your app.pnpm run storybook- Starts the Storybook UI.pnpm run build-storybook- Builds storybook instance tostorybook-staticfolder.pnpm run lint- Runs ESLint on the project.pnpm run format- Formats code for the entire project.pnpm run format.check- Checks all project code to conform to prettier rules.