User Experience Evaluation and Digital Insight Platform
ReactJS, Vite, TailwindCSS, NodeJs, ExpressJS, MongoDB, JWT, ChartJS, ApexJS, Jest with Super Test and React Testing Library
Clone the project
git clone https://github.com/ashandimantha2000/BenchmarkX.git
Go to the project directory
cd Server
Add .env file to root of the server directory
Define port as
PORT=5555
Add connection string as
MONGO_URI=mongodb+srv://ashan:[email protected]/benchmarkx?retryWrites=true&w=majority&appName=BenchmarkX
Define JSON Web Token secrect as
JWT_SECRET=secret
Define SALT as
SALT=10
Export Values
export { PORT, MONGO_URI, JWT_SECRET, SALT };
Install dependencies
npm install
Start the server
npm run dev
Go to the project directory
cd Client
Install dependencies
npm install
Start the client
npm run dev