SV.Web is the user interface part of the SV Portal project.
Before setting up SV.Web, ensure you have the following tools installed:
To install the necessary node modules, use the following command:
$ npm ci
To run the app in a local development server, follow these steps:
- Run the development server:
$ npm start
- Open your browser and navigate to
http://localhost:4200/
. The app will automatically reload if you modify any source files.
For production with Server-Side Rendering (SSR), follow these steps:
- Build the app:
$ npm run build:ssr
- Run the built app:
$ npm run serve:ssr
To execute unit tests, use the following command:
$ npm test
This will run the test suite and provide information about the test results.