1.0.0 โ€ข Published 8 months ago

next-prisma-tailwind-ecommerce v1.0.0

Weekly downloads
-
License
MIT
Repository
-
Last release
8 months ago

Screenshot

๐Ÿ‘‹ Introduction

Welcome to the open-source Next.js E-Commerce Storefront with Admin Panel project! This project is built with TypeScript, Tailwind CSS, and Prisma, providing a powerful and flexible solution for building and managing your e-commerce website.

๐Ÿฅ‚ Features

  • Next.js 13 App Router and React Server Components.
  • Custom dynamic Sitemap.xml generation.
  • Admin dashboard with products, orders, and payments.
  • File uploads using next-cloudinary.
  • Authentication using middleware.ts and httpOnly cookies.
  • Storefront with blog, products, and categories.
  • Database-Stored blogs powered by MDX templates.
  • Email verification and invoices using react-email-tailwind-templates.
  • TailwindCSS for utility-first CSS.
  • UI built with Radix and stunning UI components, all thanks to shadcn/ui.
  • Type-Validation with Zod.
  • Next Metadata API for SEO handling.
  • Comprehensive implementations for i18n.

๐Ÿ” Authentication

The authentication is handled using JWT tokens stored in cookies and verified inside the middleware.ts file. The middleware function takes in the HTTP request, reads the token cookie and if the JWT is successfully verified, it sets the X-USER-ID header with the userId as the value, otherwise the request is sent back with 401 status.

๐Ÿ‘โ€๐Ÿ—จ Environment variables

Environment variables are stored in .env files. By default the .env.example file is included in source control and contains settings and defaults to get the app running. Any secrets or local overrides of these values should be placed in a .env file, which is ignored from source control.

Remember, never commit and store .env in the source control, just only .env.example without any data specified.

You can read more about environment variables here.

๐Ÿƒโ€โ™‚๏ธ Getting Started Locally

Clone the repository.

git clone https://github.com/accretence/next-prisma-tailwind-ecommerce

Navigate to each folder in the apps folder and and set the variables.

cp .env.example .env

Get all dependencies sorted.

yarn install

Bring your database to life with pushing the database schema.

yarn db:push
yarn dev

๐Ÿ”‘ Database

Prisma ORM can use any PostgreSQL database. Supabase is the easiest to work with. Simply set DATABASE_URL in your .env file to work.

yarn db

This project exposes a package.json script for accessing prisma via yarn db:<command>. You should always try to use this script when interacting with prisma locally.

Making changes to the database schema

Make changes to your database by modifying prisma/schema.prisma.

๐Ÿ›ธ How to Deploy the Project

Follow the deployment guides for Vercel, Netlify and Docker for more information.

๐Ÿ“„ License

This project is MIT-licensed and is free to use and modify for your own projects. Check the LICENSE file for details.

Created by Amirhossein Mohammadi.

1.0.0

8 months ago