https://github.com/dougrocha/keyboardtracker
A keyboard tracker/marketplace for users to sell and buy their favorite parts.
https://github.com/dougrocha/keyboardtracker
keyboards nextjs typescript
Last synced: 5 months ago
JSON representation
A keyboard tracker/marketplace for users to sell and buy their favorite parts.
- Host: GitHub
- URL: https://github.com/dougrocha/keyboardtracker
- Owner: dougrocha
- License: apache-2.0
- Created: 2022-09-15T21:41:57.000Z (about 3 years ago)
- Default Branch: master
- Last Pushed: 2024-02-05T03:28:41.000Z (over 1 year ago)
- Last Synced: 2025-05-08T21:58:51.243Z (5 months ago)
- Topics: keyboards, nextjs, typescript
- Language: TypeScript
- Homepage:
- Size: 29.5 MB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Keyboard Tracker
This project is store/tracker for your favorite keyboards. Meka serves as a central place to find, track, discuss, and sell your favorite keyboards.
Meka gives you the ability to track your favorite keyboards and learn more about them.## Features
- Track your favorite keyboards
- Learn more about your favorite keyboards- Sell keyboards
- Manage all your keyboards with an interactive dashboard
- Gain user interest with interest checks## Live Demo
Since this site has a lot of features, it is not live. I am working on a demo version of the site that will be live soon.
## Screenshots
Here are some screenshots of the site:
### Home Page
This is the home page of the site.

### Main Keyboard (Product) Page
In this page, you can search all the products, and see some basic details of the keyboards.

### User Profile Page
Here you can see all the keyboards you favorited, the designs you created, and the keyboard vendor you have access to.

### User Dashboard Page
In this page, you can see all the vendors you are a part of, along with some quick action buttons.

### Dashboard Table
This is the table that shows all the keyboards currently in your inventory. You are able to edit the information, delete the keyboard, or view the keyboard.

## Tech Stack
- TypeScript
- Turborepo
- Next.js/React
- NestJS
- PostgreSQL
- Prisma
- Tailwind## Getting Started
1. Clone the repository
```bash
git clone
```2\. Install dependencies
This step will also require setting up a PostgreSQL database and a Redis instance, and setting up the .env file following the .env.example file.
```bash
pnpm install
```After setting up the .env file, you can run the following command to create the database and run the migrations:
```bash
cd packages/database
pnpm prisma seed
pnpm prisma db:generate
pnpm build
```Do not forget to run these commands:
```bash
cd apps/api
pnpm generate
```3\. Start the development server
```bash
pnpm dev
```or start the production server
```bash
pnpm build && pnpm start
```4\. Open [http://localhost:3000](http://localhost:3000) with your browser to see the result.