Skip to content

Commit

Permalink
Add settings for production
Browse files Browse the repository at this point in the history
  • Loading branch information
GodVenn committed Jun 28, 2022
1 parent fa32d72 commit 3104d5e
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions backend/api/appsettings.Production.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
{
"AzureAd": {
"ClientId": "ea4c7b92-47b3-45fb-bd25-a8070f0c495c",
"ClientSecret": "Fill in ASP.NET Secret Manager"
},
"KeyVault": {
"VaultUri": "https://PlaceboFlotillaDevKv.vault.azure.net/"
},
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft": "Warning",
"Microsoft.Hosting.Lifetime": "Warning"
}
},
"AllowedHosts": "*",
"AllowedOrigins": "http://localhost:3001",
"Mqtt": {
"Host": "localhost",
"Port": 1883,
"Username": "flotilla",
"Topics": [
"isar/+/mission",
"isar/+/task",
"isar/+/step"
],
"MaxRetryAttempts": 15,
"ShouldFailOnMaxRetries": true
}
}

0 comments on commit 3104d5e

Please sign in to comment.