vercel - cloudinary - clerk - supabase - nextjs13 - typescript - tailwind
Or leave a ⭐
- Passwordless signup with Google social integration
- CRUD operations for creating a store, billboards, products, colors, categories, and more
- Upload the resources that your store will need
- Automatically generates API endpoints for your frontend to use
- Use Any frontend framework that you like!
- Clone this project
git clone ...- Install Packages
npm install- Generate your dotenv file. Follow the instructions in the file to get the env variables.
cp .env.example .env- Prepare prisma
npx prisma generate
npx prisma db push- Start the app
npm run devView an exmaple frontend I've built here: E-commerce Store
| command | description |
|---|---|
dev |
Starts a development instance of the app |
build |
Builds a production instance of the app |
start |
Starts a production instance of the app |
lint |
Runs ESLint |
lint:fix |
Runs ESLint and fixes syntax |
prettier |
Runs Prettier |
prettier:fix |
Runs Prettier and fixes formatting |
postinstall |
Generates Primsa client |