Skip to content

Latest commit

 

History

History
34 lines (21 loc) · 967 Bytes

File metadata and controls

34 lines (21 loc) · 967 Bytes

Development Guide

To start developing

  1. Open terminal and Change directory to your project directory

  2. if the dependencies are not installed in the project run

    npm install 
    
  3. Start your development server by running: npm run develop

  4. Open your app in your Favourite Browser

  5. Since Live reload is enabled, any Code changes will be picked up and your app will be automatically refreshed.

To Test

  1. To run test cases: npm run test

  2. Coverage report is generated and put in coverage folder

  3. To run End to End Test cases: npm run test-e2e

  4. Report is generated and put in reporters/e2e folder

Notes:
  • All Styling is Done using Sass, if you want to use custom css file put it in client/libs folder
  • All Scripts are written in TypeScript if you want to use custom javascript library, put it in client/libs or api/libs folder