Go to file
Nam Doan ad1e782713 feat: implmement feedback card and subcription section component 2026-01-06 11:06:01 +07:00
.github/ISSUE_TEMPLATE init starter package 2025-10-16 17:29:57 +02:00
config feat: implmement feedback card and subcription section component 2026-01-06 11:06:01 +07:00
public feat; implement brand 2025-12-30 09:47:20 +07:00
src feat: implmement feedback card and subcription section component 2026-01-06 11:06:01 +07:00
.eslintrc.js init starter package 2025-10-16 17:29:57 +02:00
.gitignore init starter package 2025-10-16 17:29:57 +02:00
.prettierrc init starter package 2025-10-16 17:29:57 +02:00
.yarnrc.yml init starter package 2025-10-16 17:29:57 +02:00
LICENSE init starter package 2025-10-16 17:29:57 +02:00
README.md init starter package 2025-10-16 17:29:57 +02:00
check-env-variables.js init starter package 2025-10-16 17:29:57 +02:00
next-env.d.ts init starter package 2025-10-16 17:29:57 +02:00
next-sitemap.js init starter package 2025-10-16 17:29:57 +02:00
next.config.js init starter package 2025-10-16 17:29:57 +02:00
package-lock.json added packages to support markdown 2025-11-25 15:17:18 +01:00
package.json feat: add medusa starter design hero banner 2025-12-16 14:46:36 +07:00
postcss.config.js init starter package 2025-10-16 17:29:57 +02:00
tailwind.config.js added packages to support markdown 2025-11-25 15:17:18 +01:00
tsconfig.json added packages to support markdown 2025-11-25 15:17:18 +01:00
yarn.lock added packages to support markdown 2025-11-25 15:17:18 +01:00

README.md

Medusa logo

Medusa Next.js Starter Template

Combine Medusa's modules for your commerce backend with the newest Next.js 15 features for a performant storefront.

PRs welcome! Discord Chat Follow @medusajs

Prerequisites

To use the Next.js Starter Template, you should have a Medusa server running locally on port 9000. For a quick setup, run:

npx create-medusa-app@latest

Check out create-medusa-app docs for more details and troubleshooting.

Overview

The Medusa Next.js Starter is built with:

Features include:

  • Full ecommerce support:
    • Product Detail Page
    • Product Overview Page
    • Product Collections
    • Cart
    • Checkout with Stripe
    • User Accounts
    • Order Details
  • Full Next.js 15 support:
    • App Router
    • Next fetching/caching
    • Server Components
    • Server Actions
    • Streaming
    • Static Pre-Rendering

Quickstart

Setting up the environment variables

Navigate into your projects directory and get your environment variables ready:

cd nextjs-starter-medusa/
mv .env.template .env.local

Install dependencies

Use Yarn to install all dependencies.

yarn

Start developing

You are now ready to start up your project.

yarn dev

Open the code and start customizing

Your site is now running at http://localhost:8000!

Payment integrations

By default this starter supports the following payment integrations

To enable the integrations you need to add the following to your .env.local file:

NEXT_PUBLIC_STRIPE_KEY=<your-stripe-public-key>

You'll also need to setup the integrations in your Medusa server. See the Medusa documentation for more information on how to configure Stripe.

Resources

Learn more about Medusa

Learn more about Next.js