Skip to main content

Setting up your local development environment

Prerequisites

Before we continue, make sure that the following components are installed on your development machine.

Extracting your app

Extract the ZIP-file containing your app's source code to a specific folder on your development machine. In this example we will use: C:\apps\myapp

Running ServiceLayer, the app's ASP.NET Core OData API

Open a new PowerShell terminal in: C:\apps\myapp\ServiceLayer
Execute .\run.cmd. Your ServiceLayer should start within seconds.

A new browser window will open, showing your app's API OData endpoint.

Running NgLayer, the app's Angular UI

Open a new PowerShell terminal in: C:\apps\myapp\NgLayer
Execute .\install.cmd, this will install all node_modules required to run your app's user interface. It can take a while.

After the installation of all node_modules is completed, execute: .\run.cmd
This will compile and launch your app's user interface. Login with your credentials.

You did it. You started your first wyStack app! 🚀

Let's continue.