Make sure to install the all dependencies:
# npm
npm install
# npm
cd server
npm install
Start the development server on http://localhost:3000
:
# npm
npm run dev
Start the back end server on http://localhost:5000
:
# npm
cd server
node server.js
To run the tests with Jest
# npm
npm run test:unit
To run the E2E tests with cypress, the development server must be started
# npm
npm run test:e2e