{"id":29127958,"url":"https://github.com/fisheeesh/prostore","last_synced_at":"2026-04-11T19:31:23.203Z","repository":{"id":295043282,"uuid":"988878017","full_name":"fisheeesh/prostore","owner":"fisheeesh","description":"A modern e-commerce platform built with Next.js, TypeScript, Postgres, Prisma \u0026 ShadCN.","archived":false,"fork":false,"pushed_at":"2026-01-24T10:07:05.000Z","size":22370,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2026-01-24T20:47:48.951Z","etag":null,"topics":["jest","next-auth","nextjs","paypal","postgresql","prisma","resend-email","shadcn-ui","stripe","tailwindcss","typescript","uploadthing"],"latest_commit_sha":null,"homepage":"https://theprostore.shop","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/fisheeesh.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-05-23T08:01:37.000Z","updated_at":"2026-01-24T10:07:10.000Z","dependencies_parsed_at":"2025-07-19T11:35:07.815Z","dependency_job_id":"12412e80-62e4-4698-8935-46a9e6b9dd83","html_url":"https://github.com/fisheeesh/prostore","commit_stats":null,"previous_names":["fisheeesh/prostore_next","fisheeesh/prostore"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/fisheeesh/prostore","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fisheeesh%2Fprostore","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fisheeesh%2Fprostore/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fisheeesh%2Fprostore/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fisheeesh%2Fprostore/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/fisheeesh","download_url":"https://codeload.github.com/fisheeesh/prostore/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fisheeesh%2Fprostore/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31693272,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-11T13:07:20.380Z","status":"ssl_error","status_checked_at":"2026-04-11T13:06:47.903Z","response_time":54,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["jest","next-auth","nextjs","paypal","postgresql","prisma","resend-email","shadcn-ui","stripe","tailwindcss","typescript","uploadthing"],"created_at":"2025-06-30T01:02:10.752Z","updated_at":"2026-04-11T19:31:23.176Z","avatar_url":"https://github.com/fisheeesh.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Prostore 🛒\n\nA full featured Ecommerce website built with Next.js, TypeScript, PostgreSQL and Prisma.\n\n\u003cimg src=\"/public/images/screen.png\" alt=\"Prostore E-commerce\" /\u003e\n\n## Table of Contents\n\n\u003c!--toc:start--\u003e\n\n- [Features](#features)\n- [Usage](#usage)\n  - [Install Dependencies](#install-dependencies)\n  - [Environment Variables](#environment-variables)\n    - [PostgreSQL Database URL](#postgresql-database-url)\n    - [Next Auth Secret](#next-auth-secret)\n    - [PayPal Client ID and Secret](#paypal-client-id-and-secret)\n    - [Stripe Publishable and Secret Key](#stripe-publishable-and-secret-key)\n    - [Uploadthing Settings](#uploadthing-settings)\n    - [Resend API Key](#resend-api-key)\n  - [Run](#run)\n- [Prisma Studio](#prisma-studio)\n- [Seed Database](#seed-database)\n- [Demo](#demo)\n- [License](#license)\n\u003c!--toc:end--\u003e\n\n## Features\n\n- Next Auth authentication\n- Admin area with stats \u0026 chart using Recharts\n- Order, product and user management\n- User area with profile and orders\n- Stripe API integration\n- PayPal integration\n- Cash on delivery option\n- Interactive checkout process\n- Send order confirmation email to user after purchased\n- Featured products with banners\n- Multiple images using Uploadthing\n- Ratings \u0026 reviews system\n- Search form (customer \u0026 admin)\n- Sorting, filtering \u0026 pagination\n- Dark/Light mode\n- Much more\n\n## Usage\n\n### Install Dependencies\n\n```bash\nnpm install\n```\n\nNote: Some dependencies may have not yet been upadated to support React 19. If you get any errors about depencency compatability, run the following:\n\n```bash\nnpm install --legacy-peer-deps\n```\n\n### Environment Variables\n\nRename the `.example-env` file to `.env` and add the following\n\n#### PostgreSQL Database URL\n\nSign up for a free PostgreSQL database through Vercel. Log into Vercel and click on \"Storage\" and create a new Postgres database. Then add the URL.\n\n**Example:**\n\n```\nDATABASE_URL=\"your_url\"\n```\n\n#### Next Auth Secret\n\nGenerate a secret with the following command and add it to your `.env`:\n\n```bash\nopenssl rand -base64 32\n```\n\n**Example:**\n\n```\nNEXTAUTH_SECRET=\"your_key\"\n```\n\n#### PayPal Client ID and Secret\n\nCreate a PayPal developer account and create a new app to get the client ID and secret.\n\n**Example:**\n\n```\nPAYPAL_CLIENT_ID=\"your_id\"\nPAYPAL_APP_SECRET=\"your_secret\"\n```\n\n#### Stripe Publishable and Secret Key\n\nCreate a Stripe account and get the publishable and secret key.\n\n**Example:**\n\n```\nSTRIPE_SECRET_KEY=\"your_secret\"\nNEXT_PUBLIC_STRIPE_PUBLISHABLE_KEY=\"your_key\"\n```\n\n#### Uploadthing Settings\n\nSign up for an account at https://uploadthing.com/ and get the token, secret and app ID.\n\n**Example:**\n\n```\nUPLOADTHING_TOKEN='your_token'\nUPLOADTHING_SECRET='your_key'\nUPLOADTHING_APPID=\"your_id\"\n```\n\n#### Resend API Key\n\nSign up for an account at https://resend.io/ and get the API key.\n\n**Example:**\n\n```\nRESEND_API_KEY=\"your_key\"\n```\n\n### Run\n\n```bash\n\n# Run in development mode\nnpm run dev\n\n# Build for production\nnpm run build\n\n# Run in production mode\nnpm start\n\n# Export static site\nnpm run export\n```\n\nOpen [http://localhost:3000](http://localhost:3000) with your browser to see the result.\n\n## Prisma Studio\n\nTo open Prisma Studio, run the following command:\n\n```bash\nnpx prisma studio\n```\n\n## Seed Database\n\nTo seed the database with sample data, run the following command:\n\n```bash\nnpx tsx ./db/seed\n```\n\n## Demo\n\nYou can now play it around with it. [here](https://www.theprostore.shop)\n\n**Recommendation**: Once you are about to register to the app, I recommend you to use your existing email address. In the system, I implemented sending email purchase receipt to user feature when the product has been paid. And yeah I really want you to experience it. Please don't miss out. 🙌🏻\n\nFor payments like **PayPal**, you can use your own personal account with email and password from PayPay sandbox account to purchase the products. \n\nFor **Stripe**, here is default card which is provided by Stripe -\n```bash\nCard Number: 4242 4242 4242 4242\nExpiration date(MM/YY): 12 / 34\nSecurity code: 123\n```\n\n## License\n\nThis project is licensed under the [MIT License](LICENSE).\n\nContact: [swanphyo444@gmail.com](mailto:swanphyo444@gmail.com)\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffisheeesh%2Fprostore","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffisheeesh%2Fprostore","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffisheeesh%2Fprostore/lists"}