Hello 👋,
we are thrilled to meet you at our training. Please find your personal preparation guide below. It helps you to set up your development environment.
If you have any trouble, please don't hesitate to contact Markus or Gregor.
👩🏫 The slides to this workshop can be found at speakerdeck.com.
Please ensure you have the following tools already installed before the workshop starts.
Please install the latest version of Angular CLI. Open up a terminal on your system and run the following command.
npm install --global @angular/cli
Please check if the setup was successful running the following command in your terminal.
ng --version
Please clone this repository to your system and install the needed dependencies for the Angular application and the Demo-Backend.
# Download repository
git clone https://github.com/ng-practice/ng-de-2019.git workshop
# Switch into repository directory
cd workshop
# Install dependencies for Angular application
npm install --prefix client
# Install dependencies for Backend
npm install --prefix server
Please verify that both angular application and backend run on your system.
Angular
Hint you can exit the development web server hitting CTRL+C.
cd client
npm start
The output of a successfully started Angular application
Backend
Hint you can exit the development web server hitting CTRL+C.
cd server
npm start
The output of a successfully started backend
📖️ Please see the server README for an API documentation.