https://github.com/raphico/product-feedback-app
a solution to the front-end mentor product feedback app
https://github.com/raphico/product-feedback-app
fastify mongodb mongoose react redux rtk-query typescript
Last synced: about 2 months ago
JSON representation
a solution to the front-end mentor product feedback app
- Host: GitHub
- URL: https://github.com/raphico/product-feedback-app
- Owner: Raphico
- License: mit
- Created: 2025-03-02T01:29:13.000Z (7 months ago)
- Default Branch: main
- Last Pushed: 2025-03-02T02:13:06.000Z (7 months ago)
- Last Synced: 2025-03-02T03:20:47.224Z (7 months ago)
- Topics: fastify, mongodb, mongoose, react, redux, rtk-query, typescript
- Homepage:
- Size: 2.21 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Product Feedback app
This is a solution to the [Product feedback app challenge on Frontend Mentor](https://www.frontendmentor.io/challenges/product-feedback-app-wbvUYqjR6)
## Features
- 👤 User Authentication & profile update
- 🛡️ Admin Controls (Official Replies, Update Status)
- ➕ Create, Edit, Delete product feedback Requests
- 👍 Upvote & Sort feedbacks by Votes/Comments
- 🏷️ Filter suggestions by Category
- 💬 Comment & Reply (Threaded Conversations)
- 📊 Roadmap Tracking with Kanban view for admins (Planned, In Progress, Live)## stack
- **UI:** [React](https://react.dev/)
- **Backend framework:** [Fastify](https://fastify.dev/)
- **Database:** [Postgresql](https://www.postgresql.org/)
- **ORM:** [Drizzle ORM](https://orm.drizzle.team/)
- **Global state management:** [Redux Toolkit](https://redux-toolkit.js.org/)
- **Asynchronous states management:** [RTK query](https://redux-toolkit.js.org/rtk-query/overview)## Database Design

## Running locally
1. Clone repository
```bash
git clone git@github.com:Raphico/product-feedback-app.git
cd product-feedback-app
```2. Install dependencies
```bash
yarn install
```3. Setup environmental variables (see `.env.example`)
4. Start database container
```bash
docker compose -f docker-compose.dev.yml up --build
```5. Run database migrations
```bash
yarn workspace @product-feedback-app/server db:migrate
```6. start development servers
```bash
yarn dev
```## License
Licensed under the MIT License. Check the [LICENSE](./LICENSE.md) file for details.