Skip to main content

Development Environment Setup

Set up your local development environment to start working with SPS.

Prerequisites

Ensure you have these tools installed:

  • Node.js 18.x or higher
  • Yarn 1.22.x or higher
  • .NET SDK 6.0 or higher
  • SQL Server 2019+ (or LocalDB)
  • Git
  • Visual Studio 2022 or VS Code

Quick Start

Follow these steps to get the full SPS stack running locally:

1. Frontend (Angular)

cd manual/angular
yarn install
yarn start

Runs on: http://localhost:4200

2. Backend (.NET)

  1. Open the solution in Visual Studio
  2. Update connection string in appsettings.json
  3. Apply database migrations
  4. Run the Web.Host project

Runs on: https://localhost:44301

3. Documentation (Docusaurus)

cd sps-tech-kb
yarn install
yarn start

Runs on: http://localhost:3000

Next Steps

Explore the Core Modules to start developing features.