https://github.com/jacceycode/stackbuld
https://github.com/jacceycode/stackbuld
Last synced: about 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/jacceycode/stackbuld
- Owner: JacceyCode
- Created: 2024-08-27T15:03:29.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-09-02T07:57:19.000Z (over 1 year ago)
- Last Synced: 2025-01-17T07:32:14.942Z (about 1 year ago)
- Language: TypeScript
- Homepage: https://stackbuld-e-commerce.vercel.app
- Size: 340 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# RitStore - [link](https://stackbuld-e-commerce.vercel.app)
### An online e-commerce store offering products ranging from clothing for males and females to jewelry and electronics.
- The homepage displays a variety of products and allows users to view products by various categories.
- Detailed information for each product can be viewed by clicking on it.
- New products can be added, and existing products can be edited or deleted.
This project was built using `Next.js`, `TypeSCript`, `Tailwind CSS`. The code is documented on `Github` - [`repo`](https://github.com/JacceyCode/stackbuld) and hosted on `Vercel` - [`RitStore`](https://stackbuld-e-commerce.vercel.app).
## To Run Locally
- First, clone the repository:
```bash
git clone https://github.com/JacceyCode/stackbuld
```
- Next, install the dependencies:
```bash
npm install
# or
yarn install
# or
pnpm install
# or
bun install
```
- Next, run the development server:
```bash
npm run dev
# or
yarn dev
# or
pnpm dev
# or
bun dev
```
Open [http://localhost:3000](http://localhost:3000) with your browser to see the result.
You can start editing the page by modifying `app/(Home)/page.tsx`. The page auto-updates as you edit the file.
## To Test Locally
The tests are implemented using `Jest`.
- To run the test:
```bash
npm run test
# or
yarn test
# or
pnpm test
# or
bun test
```