Skip to content

garunski-co/spent-app

Repository files navigation

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