cc2abc91d6
Playwright Tests / test (push) Waiting to run
Integrate OCORE/OCORE_web-based secret management using Azure Key Vault and DPAPI cache. Update appsettings.json to remove plaintext secrets and list managed keys. Register secret management in Program.cs. Update .gitignore for secret files. Add documentation for naming conventions and migration, plus a PowerShell script for initial secret upload. Centralizes and secures secret handling across the app.
34 lines
358 B
Plaintext
34 lines
358 B
Plaintext
# Visual Studio
|
|
.vs/
|
|
*.user
|
|
*.suo
|
|
|
|
# Build Output
|
|
bin/
|
|
obj/
|
|
|
|
# NuGet
|
|
packages/
|
|
*.nupkg
|
|
|
|
# Node
|
|
node_modules/
|
|
dist/
|
|
.npm/
|
|
|
|
# Logs
|
|
*.log
|
|
|
|
# Playwright
|
|
/test-results/
|
|
/playwright-report/
|
|
/blob-report/
|
|
/playwright/.cache/
|
|
/playwright/.auth/
|
|
# Secret Management DPAPI cache
|
|
secrets.cache
|
|
**/secrets.cache
|
|
|
|
# Secret values file (never commit)
|
|
Scripts/secrets.json
|