Skip to content

Latest commit

 

History

History
45 lines (29 loc) · 615 Bytes

README.md

File metadata and controls

45 lines (29 loc) · 615 Bytes

Run the application locally

First you need to install all the dependencies, which will also build the application thanks to the postinstall hook:

npm install

And finally you need to run the express server:

npm run start

The app should be available at localhost:1234

Development mode

To run the app in development mode, you need to install all the dependencies:

npm install

and run the development server

npm run start:dev

Unit Tests

To run the unit tests

npm run test

Integration and e2e tests

To run the tests

npm run cypress:open