-
Notifications
You must be signed in to change notification settings - Fork 323
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Made blob storage connection string and SAS URL optional. (#876)
* Fixed type definition circular reference issue. * Made blob storage connection string and URL optional.
- Loading branch information
Showing
10 changed files
with
108 additions
and
86 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
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
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,9 +1,7 @@ | ||
{ | ||
"managementApiUrl": "https://<service-name>.management.azure-api.net", | ||
"managementApiAccessToken": "SharedAccessSignature ...", | ||
"blobStorageContainer": "content", | ||
"blobStorageUrl": "https://<account>.blob.core.windows.net?st=...", | ||
"environment": "development", | ||
"backendUrl": "https://<service-name>.developer.azure-api.net", | ||
"useHipCaptcha": false | ||
"environment": "development", | ||
"managementApiUrl": "https://<service-name>.management.azure-api.net", | ||
"managementApiAccessToken": "SharedAccessSignature ...", | ||
"backendUrl": "https://<service-name>.developer.azure-api.net", | ||
"useHipCaptcha": false | ||
} |
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,6 @@ | ||
{ | ||
"managementApiUrl": "https://<service-name>.management.azure-api.net", | ||
"managementApiAccessToken": "SharedAccessSignature...", | ||
"blobStorageContainer": "content", | ||
"blobStorageConnectionString": "DefaultEndpointsProtocol=...", | ||
"environment": "publishing", | ||
"useHipCaptcha": false | ||
"environment": "publishing", | ||
"managementApiUrl": "https://<service-name>.management.azure-api.net", | ||
"managementApiAccessToken": "SharedAccessSignature...", | ||
"useHipCaptcha": false | ||
} |
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,5 +1,5 @@ | ||
{ | ||
"managementApiUrl": "https://<service-name>.management.azure-api.net", | ||
"environment": "runtime", | ||
"backendUrl": "https://<service-name>.developer.azure-api.net" | ||
"environment": "runtime", | ||
"managementApiUrl": "https://<service-name>.management.azure-api.net", | ||
"backendUrl": "https://<service-name>.developer.azure-api.net" | ||
} |
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 |
---|---|---|
@@ -0,0 +1,2 @@ | ||
export * from "./mapiObjectStorage"; | ||
export * from "./mapiBlobStorage"; |
Oops, something went wrong.