Skip to content

Angular setup and build process

clockworkbanana edited this page Apr 3, 2020 · 10 revisions

...Creation of this page is in progress...


1. Set up Node.js and Angular CLI.

  1. Visit Setting up the local environment and workspace at angular.io
  2. Perform actions described in prerequisites
  3. Perform Step 1: Install the Angular CLI of manual

Please note that you might require administrator rights to perform the installation of Angular CLI. You might need

2. Start the page locally

  1. Checkout test-site project from https://github.com/jdi-testing/test-site

  2. Move to angular-site folder and execute following commands:

    $ npm install
    $ ng serve --open

    The above should result in opening the angular page in a separate browser window.

3. Build the distribution

  1. Run:

    ng build --prod

    Should place the built page into dist folder

  2. to be continued...


Creation of this page is in progress...

Clone this wiki locally