This project provides the primary API for the Pulse application.
The local secrets are not available in source control. To run locally:
- Obtain the secrets.json file from another developer.
- Place it in the project root directory. (It is already in .gitignore)
- Pipe it into the
dotnet user-secrets
command, as follows:
- Windows:
type .\secrets.json | dotnet user-secrets set
- Linux/MacOS:
cat ./secrets.json | dotnet user-secrets set