In this version we deploy the app locally without docker.
We will assume that you already have our project downloaded in your PC.
- Open your terminal and go into the folder where you have downloaded the project.
- Go into the
webappfolder.
cd webapp- Install the dependencies with
--forceto avoid errors.
npm install --force- Finally, run the app with:
npm startIf the application doesn't open automatically, you can open it in your browser in http://localhost:3000.
- Go to the
webappfolder.
cd webapp- Run the tests with:
npm test -- --coverage --watchAll=falseImportant: The app must be running in order to run the E2E tests!
- Go to the
e2efolder.
cd webapp/e2e- Run the tests with:
npx jest . Optionally, you can run the tests with the --runInBand flag to run the tests sequentially.
