Simple system designed to handle user feedback efficiently. It allows users to submit feedback, which is then stored in a in memory database.
-
Clone the repository
git clone https://github.com/amitjimiwal/feedback-management.git cd feedback-management
-
Install the dependencies
npm run depinstall
-
Set up environment variables
Create a
.env
file in thebackend
directory and add the following:PORT=3000
Create a
.env
file in thefrontend
directory and add the following:VITE_APP_BACKEND_URL=http://localhost:5555
-
Run the backend
npm run dev:backend
-
Run the frontend
npm run dev:frontend
See the root package.json
file for more installation scripts
The frontend will be running at http://localhost:5173
.
The backend will be running at http://localhost:3000
.