Foobar is a simple app for taking a test and getting a score out of it .
Use the npm manager to install the project
git clone https://github.com/Rispectech/weTest.gitAfter cloning the project, please go into the server, install the dependencies, and then start in the mode you want it to be
also before starting the server , make sure to include an .env file for jwt secrets
.env.example
JWT_ACCESS_SECRET=8
JWT_REFRESH_SECRET=6cd server
npm i
npm run dev
npm run startdev comment to start the server with nodemon with watch setup otherwise for normal startup use start command
After starting the server, go to the web directory, install the dependencies and start the frontend
cd ..
cd web
npm i
npm run start