28 lines
620 B
JSON
28 lines
620 B
JSON
{
|
|
"ConnectionStrings": {
|
|
"DefaultConnection": "Data Source=../Database/klapi.db"
|
|
},
|
|
"Logging": {
|
|
"LogLevel": {
|
|
"Default": "Information",
|
|
"Microsoft.AspNetCore": "Warning"
|
|
}
|
|
},
|
|
"Auth": {
|
|
"Issuer": "klapi-api",
|
|
"Audience": "klapi-ui",
|
|
"SigningKey": "change-this-to-a-long-random-32-char-minimum-key",
|
|
"AllowedOrigins": [
|
|
"http://localhost:5173",
|
|
"http://127.0.0.1:5173",
|
|
"http://localhost:4173",
|
|
"http://127.0.0.1:4173"
|
|
],
|
|
"Admin": {
|
|
"Username": "admin",
|
|
"Password": "changeme",
|
|
"DisplayName": "Administrator"
|
|
}
|
|
}
|
|
}
|