Skip to content

Latest commit

 

History

History
35 lines (32 loc) · 1016 Bytes

azure.md

File metadata and controls

35 lines (32 loc) · 1016 Bytes

Azure Blob storage transport

Configuration example:

package.json

{
  ...
  "updater": {
    "url": "https://example-updates.blob.core.windows.net/update-container/{platform}-{arch}-{channel}.json"
  },
  ...
}

publisher.json

{
  "transport": {
    "module": "azure",
    "account": "Your Azure account",
    "accountKey": "Your Account Key",
    "containerName": "Container for updates"
  }
}

Options

Name Default Description
account Azure account
accountKey Account API Key
containerName Directory where updates are stored
blobUrl https://${account}.blob.core.windows.net Service root url
remoteUrl ${blobUrl}/${containerName}/${remotePath} Service root url + resource path
remotePath ''