Table of Contents
Feedback UI is a small full-stack application that allows you to add, edit, and remove feedback via CRUD operations.
To get a local copy up and running follow these simple example steps.
You will need an IDE of your choice (like VSCode), and a terminal (VSCode terminal, bash, etc). In your terminal of choice, run:
- npm
npm install npm@latest -g
- Clone the repo
git clone https://github.com/ivanaogrizovic/feedback-app.git
- Install NPM packages
npm install
- To run both FE (port 5000) and BE (port 3000):
npm run dev
- Visit htpp://localhost:5000
If you have any other processes running on port 3000 or 5000, kill them.
- This was made as part of a Udemy course for learning purposes
