-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
#1351 Added RavenDb connectionstring to appsettings and retrieved it …
…from there on the client
- Loading branch information
Showing
2 changed files
with
25 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,10 @@ | ||
{ | ||
"FilesFolder": "../../../../Assessments.Frontend.Web/Cache/", | ||
"ConnectionStrings": { | ||
"AzureBlobStorage": "UseDevelopmentStorage=true", // from configuration or user secrets | ||
"Fab4": "", // from configuration or user secrets | ||
"Rodliste2020": "" // from configuration or user secrets | ||
} | ||
"FilesFolder": "../../../../Assessments.Frontend.Web/Cache/", | ||
"ConnectionStrings": { | ||
"AzureBlobStorage": "UseDevelopmentStorage=true", // from configuration or user secrets | ||
"RavenDBUrl": "localhost:8000", | ||
"RavenDB": "DynamicPropertiesTest", | ||
"Fab4": "", // from configuration or user secrets | ||
"Rodliste2020": "" // from configuration or user secrets | ||
} | ||
} |