- Node.js (version > 10.15)
- npm or yarn
npm install
or yarn install
The configuration of the application can be modified in the .env file :
AUTHENTICATION_MODE
PEARL_JAM_URL
QUEEN_URL_BACK_END
QUEEN_URL_FRONT_END
ISSUER_URI
OIDC_CLIENT_ID
npm start
or yarn start
Runs the app in the development mode.
Open http://localhost:3000 to view it in the browser.
The page will reload if you make edits.
You will also see any lint errors in the console.
To test the application at this point you need to use the server mocked_apis_server to serve the pearlJam APIs. You will find it at the root of this project : /mocked_apis_server
cd ./mocked_apis_server
Run the following commands to install and start the server:
npm install
(or yarn install
)
npm start
(or yarn start
)
npm run test
or yarn run test
To see the tests coverage:
npm test -- --coverage
(or yarn test -- --coverage
)
npm run cypress:open
or yarn run cypress:open