Skip to content

Latest commit

 

History

History
17 lines (14 loc) · 462 Bytes

README.md

File metadata and controls

17 lines (14 loc) · 462 Bytes

spent-app

Secrets

  1. initialize secret manager for dotnet
    dotnet user-secrets init --project Server/Server.csproj
  2. set the Plaid Client ID, technically not a secret
    dotnet user-secrets set "AppSettings:PlaidSettings:ClientId" "12345" --project Server/Server.csproj
  3. set the Plaid Secret
    dotnet user-secrets set "AppSettings:PlaidSettings:Secret" "12345" --project Server/Server.csproj