Skip to content

Commit

Permalink
Fix docs
Browse files Browse the repository at this point in the history
  • Loading branch information
loic-sharma committed Oct 30, 2019
1 parent c61fdc1 commit a6d4b47
Showing 1 changed file with 16 additions and 3 deletions.
19 changes: 16 additions & 3 deletions docs/quickstart/azure.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,10 +46,23 @@ Update the `appsettings.json` file:
"AccountName": "my-account",
"AccessKey": "abcd1234",
"Container": "my-container"
},

...
}
```

Alternatively, you can use a full Azure Storage connection string:

```json
{
...

// You can also use a connection string:
// "ConnectionString": "AccountName=my-account;AccountKey=abcd1234;...",
// "Container": "my-container"
"Storage": {
"Type": "AzureBlobStorage",

"ConnectionString": "AccountName=my-account;AccountKey=abcd1234;...",
"Container": "my-container"
},

...
Expand Down

0 comments on commit a6d4b47

Please sign in to comment.