Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jacceycode/stackbuld
https://github.com/jacceycode/stackbuld
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/jacceycode/stackbuld
- Owner: JacceyCode
- Created: 2024-08-27T15:03:29.000Z (4 months ago)
- Default Branch: main
- Last Pushed: 2024-08-29T12:58:35.000Z (4 months ago)
- Last Synced: 2024-08-29T19:31:13.454Z (4 months ago)
- Language: TypeScript
- Size: 136 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
```