Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/devsaifur/the-next-dashboard
An e-commerce shop built with everything new in Next.js
https://github.com/devsaifur/the-next-dashboard
nextjs posgres typescript
Last synced: about 1 month ago
JSON representation
An e-commerce shop built with everything new in Next.js
- Host: GitHub
- URL: https://github.com/devsaifur/the-next-dashboard
- Owner: devSaifur
- Created: 2024-02-13T20:13:54.000Z (11 months ago)
- Default Branch: main
- Last Pushed: 2024-06-09T13:33:01.000Z (7 months ago)
- Last Synced: 2024-06-09T22:39:44.091Z (7 months ago)
- Topics: nextjs, posgres, typescript
- Language: TypeScript
- Homepage: https://the-next-shop-dashboard.vercel.app/
- Size: 2.49 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# [The Next Shop](https://the-next-shop-dashboard.vercel.app/)
This is an e-commerce admin dashboard and headlessCMS build with Next.js 14. It is bootstrapped with `create next-app`.
Checkout the storefront repository: https://github.com/devSaifur/the-next-store
[![The Next Shop | Dashboard](./public/images/screenshot.png)](the-next-shop-dashboard.vercel.app/)
## Tech Stack
- **Framework:** [Next.js](https://nextjs.org)
- **Styling:** [Tailwind CSS](https://tailwindcss.com)
- **Basic Authentication:** [Lucia](https://lucia-auth.com/)
- **Database:** [Neon Postgres](https://neon.tech/)
- **ORM:** [Drizzle ORM](https://orm.drizzle.team)
- **UI Components:** [shadcn/ui](https://ui.shadcn.com)
- **Image Uploads:** [Cloudinary](https://cloudinary.com/)
- **Payments infrastructure:** [Stripe](https://stripe.com)## Running Locally
1. Clone the repository
```bash
git clone https://github.com/devSaifur/the-next-dashboard.git
```2. Install dependencies using pnpm
```bash
pnpm install
```3. Copy the `.env.example` to `.env` and update the variables.
```bash
cp .env.example .env
```4. Start the development server
```bash
pnpm run dev
```5. Push the database schema
```bash
pnpm run db:push
```6. Start the Stripe webhook listener
```bash
pnpm run stripe:listen
```