mirror of
https://github.com/QuotifyTeam/QuotifyBE.git
synced 2025-12-16 12:10:06 +01:00
21 lines
611 B
JSON
21 lines
611 B
JSON
{
|
|
"JwtSecret": "this is a sample jwt secret token required for quotify - it needs to have at least 256 bits (32 bytes long)",
|
|
"DomainName": "example.com",
|
|
"CorsOrigins": [
|
|
"http://localhost:5259", "http://localhost:5258", "http://localhost:3000", "http://example.com"
|
|
],
|
|
"UserContent": {
|
|
"MaxFileSize": 5242880,
|
|
},
|
|
"ConnectionStrings": {
|
|
"DefaultConnection": "Server=server-host;Database=db-name;Username=quotify-user;Password=user-secret"
|
|
},
|
|
"Logging": {
|
|
"LogLevel": {
|
|
"Default": "Information",
|
|
"Microsoft.AspNetCore": "Warning"
|
|
}
|
|
},
|
|
"AllowedHosts": "*"
|
|
}
|