winwithappplatpoc/Humongous.Healthcare
Matthew Alan Gray 15419905ef Updates to React web client and API CORS for local testing 2022-10-15 13:22:46 -05:00
..
.config Dockerize the API and run in AKS (#4) 2022-09-26 07:28:06 -07:00
Controllers Update HealthCheckController.cs 2022-09-26 08:11:52 -07:00
Models Dockerize the API and run in AKS (#4) 2022-09-26 07:28:06 -07:00
Properties Updates to React web client and API CORS for local testing 2022-10-15 13:22:46 -05:00
Services Dockerize the API and run in AKS (#4) 2022-09-26 07:28:06 -07:00
.dockerignore Update .dockerignore 2022-09-27 14:13:57 -07:00
Humongous.Healthcare.csproj Dockerize the API and run in AKS (#4) 2022-09-26 07:28:06 -07:00
Humongous.Healthcare.sln Dockerize the API and run in AKS (#4) 2022-09-26 07:28:06 -07:00
Program.cs Dockerize the API and run in AKS (#4) 2022-09-26 07:28:06 -07:00
README.md Added short README.md docs indicating necessary settings for API and frontend code bases 2022-10-03 12:41:38 -05:00
Startup.cs Updates to React web client and API CORS for local testing 2022-10-15 13:22:46 -05:00
appsettings.Development.json Dockerize the API and run in AKS (#4) 2022-09-26 07:28:06 -07:00
appsettings.json Dockerize the API and run in AKS (#4) 2022-09-26 07:28:06 -07:00

README.md

Humongous.Healthcare API Service

This codebase is a representative example of a Health Check tracking API service for Humongous Healthcare.

Running the API Service

To run the API service locally, it is necessary to define the CosmosDb::Account and CosmosDb::Key settings in the appsettings.json file to point to a valid CosmosDb account.

{
  "Logging": {
    "LogLevel": {
      "Default": "Information",
      "Microsoft": "Warning",
      "Microsoft.Hosting.Lifetime": "Information"
    }
  },
  "AllowedHosts": "*",
  "CosmosDb": {
    "Account": "<Replace with your account URL>",   // <-- The CosmosDb Account
    "Key": "<Replace with your account key>",       // <-- The CosmosDb Access Key
    "DatabaseName": "HealthCheckDB",
    "ContainerName": "HealthCheck"
  }
}