Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ritikprajapat21/transaction-dashboard
Full stack dashboard application built using MERN stack that lets you track your inventory status
https://github.com/ritikprajapat21/transaction-dashboard
Last synced: 13 days ago
JSON representation
Full stack dashboard application built using MERN stack that lets you track your inventory status
- Host: GitHub
- URL: https://github.com/ritikprajapat21/transaction-dashboard
- Owner: ritikprajapat21
- Created: 2024-06-21T03:01:47.000Z (7 months ago)
- Default Branch: main
- Last Pushed: 2024-06-22T09:49:53.000Z (7 months ago)
- Last Synced: 2024-06-23T18:01:42.398Z (7 months ago)
- Language: JavaScript
- Size: 583 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Transaction Dashboard: MERN Stack
A dashboard application to monitor transactions. You can search for a product and see its details whether it is sold or not and can see products based on month. You can see your results where you left off.# Sample Images
![image](https://github.com/ritikprajapat21/transaction-dashboard/assets/112960100/02b457dc-9c42-4ef4-8771-96f965f4377d)
![image](https://github.com/ritikprajapat21/transaction-dashboard/assets/112960100/a481d390-2901-400e-93ff-19d2752fcdb5)# Demo Video
[Screencast from 2024-06-22 15-08-29.webm](https://github.com/ritikprajapat21/transaction-dashboard/assets/112960100/2b60fb7f-d010-4bc0-b534-e3c754446d1c)# Steps to setup
**__NOTE:__** I have used docker mongo image for mongodb so change the url as per your use in backend/db/index.js.
```
git clone https://github.com/ritikprajapat21/transaction-dashboard.git
```
For backend
```
cd transaction-dashboard/backend
npm install
```
After install you can fill mongodb with seed data by running
```
npm run seed
```
Now for frontend setup:
```
cd ../frontend
npm install
```
Now run both frontend and backend.
For frontend:
```npm run dev```
For backend:
```npm start```