Microservices Lecture 01 Angular Login Screen

Microservices, WS1920

Folien

https://docs.google.com/presentation/d/1KtfXE4scm8MHACZauLTTmCVx0EOUmWDQ_W66TcxiQRU/edit?usp=sharing

Part 1

Part 2

Sorry some parts of the video are missing.

You need to setup your project structure:

  1. at some place create a project directory e.g. with name “MicroserviceProject”
  2. within MicroserviceProject create subdirectories “Shop” and “Warehouse”
  3. Start WebStorm and open Warehouse as project.
  4. Open a Terminal (Button at the botton left of WebStrom:
  5. Within the terminal run command:
    npm install g @angular/cli
  6. Within the terminal run command:
    ng new WarehouseFrontend
    answer the questions:
    ? Would you like to add Angular routing? Yes
    ? Which stylesheet format would you like to use? SCSS  (Arrow Key Down)
  7. Open the new WarehouseFrontend directory as project in your WebStorm
  8. Open a Terminal
  9. Within the terminal run command:
    ng serve -o
    your browser should open with a default angular page for your web application
  10. Follow the second video