Skip to content

Latest commit

 

History

History
36 lines (20 loc) · 853 Bytes

README_FRONTEND.md

File metadata and controls

36 lines (20 loc) · 853 Bytes

Frontend Instructions

Prerequisites

Build the Angluar application

  • Move to frontend folder
  • Run npm install to install dependencies
  • Run npm run build to build frontend

Tasks

Development server

Run npm run start for a dev server. Navigate to http://localhost:4200/. The app will automatically reload if you change any of the source files.

Build

Run npm run build to build the project. The build artifacts will be stored in the frontend/dist directory.

Running unit tests

Run npm run test to execute the unit tests via Karma.

Lint

Run npm run lint to run linter.

Format with Prettier

Run npm run format:check to check all files for format issues.

Run npm run format to format all files.