You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
HMPPS Creating Future Opportunities (CFO) - Data Management System (DMS). It is intended for internal use only and is used to process PNOMIS and NDelius offender data to supply CATS (Case Assessment and Tracking System - also used by HMPPS CFO) with accurate offender movements and updates.
9
5
10
6
# Queries
11
7
12
8
Any queries, please contact andrew.grocott@justice.gov.uk or visit our slack channel. https://app.slack.com/client/T02DYEB3A/C011Z8PGWCU/details/
13
9
10
+
# Development Setup and Execution Guide
11
+
12
+
## Setup (development)
13
+
1. From the **project root**, run the setup script. This will automatically create the required folder structure in your devices home directory:
14
+
```sh
15
+
./setup.sh
16
+
```
17
+
2. Configure secret(s) forapplicationsin the *src* directory:
18
+
- *Visualiser.csproj* → Manage User Secrets
19
+
```json
20
+
{
21
+
"AzureAd:ClientSecret": "<ENTRA_CLIENT_SECRET>"
22
+
}
23
+
```
14
24
25
+
## Running the apps
26
+
The recommended way to run and debug these apps is using .NET Aspire.
27
+
- **Using Visual Studio Code**: open the project and press `F5`, selecting the *Default Configuration*.
28
+
- **Using Visual Studio or other IDEs**: From the debug configuration dropdown, select`Aspire.AppHost` and start the application.
0 commit comments