6423713305
- Register IAdminUserRepository in DependencyInjection - Add connection string to appsettings.json - Make database migrations non-blocking (allow app to start even if DB unavailable) - Remove UseAuthentication() middleware (using client-side JWT auth instead) - App now runs successfully on https://localhost:5002 Co-Authored-By: Claude Haiku 4.5 <noreply@anthropic.com>
16 lines
346 B
JSON
16 lines
346 B
JSON
{
|
|
"Logging": {
|
|
"LogLevel": {
|
|
"Default": "Information",
|
|
"Microsoft.AspNetCore": "Warning"
|
|
}
|
|
},
|
|
"AllowedHosts": "*",
|
|
"ConnectionStrings": {
|
|
"Default": "Host=localhost;Database=taxbaikdb;Username=taxbaik;Password=password123"
|
|
},
|
|
"Jwt": {
|
|
"SecretKey": "dev-secret-key-change-in-production-min-32-chars!"
|
|
}
|
|
}
|