Skip to content

Latest commit

 

History

History
37 lines (25 loc) · 533 Bytes

File metadata and controls

37 lines (25 loc) · 533 Bytes

Getting started

Prerequisites

  • .NET SDK 8.0+
  • At least 1 SMTP configuration (host/port/email + password)
  • Environment variables (see Configuration)

Run locally

From the repo root:

cd API
dotnet restore
dotnet run

Local URLs (from API/Properties/launchSettings.json):

  • Swagger UI (root): http://localhost:5108/
  • Health check: GET http://localhost:5108/test

Run tests

From the repo root:

dotnet test API/API.sln

Or:

cd API
dotnet test