Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/strapi/strapi-starter-next-ecommerce
Strapi Starter Next.js E-commerce
https://github.com/strapi/strapi-starter-next-ecommerce
ecommerce nextjs starter strapi
Last synced: about 2 months ago
JSON representation
Strapi Starter Next.js E-commerce
- Host: GitHub
- URL: https://github.com/strapi/strapi-starter-next-ecommerce
- Owner: strapi
- License: mit
- Archived: true
- Created: 2020-10-21T16:05:41.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2022-03-28T16:09:05.000Z (over 2 years ago)
- Last Synced: 2024-08-01T16:30:11.252Z (5 months ago)
- Topics: ecommerce, nextjs, starter, strapi
- Language: JavaScript
- Homepage: strapi-starter-next-ecommerce.strapijs.vercel.app
- Size: 793 KB
- Stars: 215
- Watchers: 18
- Forks: 73
- Open Issues: 10
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
**:no_entry: Deprecated**
This repository is no longer maintained and only works for Strapi v3. To find the newest Strapi v4 starters, check out the [starters-and-templates monorepo](https://github.com/strapi/starters-and-templates/).
---
# Strapi Starter Next.js E-commerce
Next.js starter for creating a simple e-commerce website with Strapi.
![screenshot image](screenshot.png)
This starter allows you to try Strapi with Next.js with the example of a simple e-commerce website where you can buy dev stickers. It is fully customizable and due to the fact that it is open source, fully open to contributions. So do not hesitate to add new features and report bugs!
This starter uses the [Strapi E-commerce template](https://github.com/strapi/strapi-template-ecommerce)
Check out all of our starters [here](https://strapi.io/starters)
## Features
- 1 Component
- 2 Collection types: Product, Category
- 27 Created products
- 6 Created categories
- Permissions set to `true` for product and category
- Responsive design using Tailwind css
- Slug system
- Publication system (draft & published)
- Role based access controls
- Payments handled with SnipcartThis starter is using [Snipcart](https://snipcart.com/) which allows you setup a shopping cart on any website. They wrote a [tutorial](https://snipcart.com/blog/strapi-nuxt-ecommerce-tutorial) teaching you how to create this website but selling cupcakes!
Payment will not work on localhost, we are redirecting you to this [tutorial](https://snipcart.com/blog/develop-a-snipcart-powered-website-locally-using-ngrok) if you want to test payment locally.
## Getting started
Use our `create-strapi-starter` CLI to create your project.
```sh
npx create-strapi-starter@3 my-site next-ecommerce
```The CLI will create a monorepo, install dependencies, and run your project automatically.
The Next frontend server will run here => [http://localhost:3000](http://localhost:3000)
The Strapi backend server will run here => [http://localhost:1337](http://localhost:1337)
## Deploying to production
You will need to deploy the `frontend` and `backend` projects separately. Here are the docs to deploy each one:
- [Deploy Strapi](https://strapi.io/documentation/developer-docs/latest/setup-deployment-guides/deployment.html#hosting-provider-guides)
- [Deploy Next](https://nextjs.org/docs/deployment)Don't forget to setup the environment variables on your production app:
For the frontend the following environment variable is required:
- `NEXT_PUBLIC_STRAPI_API_URL`: URL of your Strapi backend, without trailing slashEnjoy this starter!