feat: Add authentication configuration with OpenID Connect and update appsettings #4

This commit is contained in:
Marek Lesko
2025-07-27 16:30:17 +00:00
parent 813b7ac9aa
commit b991f009c7
3 changed files with 37 additions and 0 deletions

View File

@@ -8,4 +8,14 @@
"ConnectionStrings": {
"DefaultConnection": "Server=localhost,1433;Database=CentrumDb;User=sa;Password=P@ssw0rd;TrustServerCertificate=True;"
}
,
"Authentication": {
"PocketId": {
"Authority": "https://identity.lesko.me",
"ClientId": "21131567-fea1-42a2-8907-21abd874eff8",
"ClientSecret": "a633GE6G3JoY8WopnsxhSXQpmsTuXa63",
"CallbackPath": "/signin-pocketid",
"Scopes": "openid profile email"
}
}
}