grunt-azure-storage

v0.0.1
Copy files to azure blob storage

grunt-azure-storage

Grunt task for copying files to an azure storage blob.

Azure SDK uses by default the environment variables AZURE_STORAGE_ACCOUNT and AZURE_STORAGE_ACCESS_KEY. Custom connection arguments can be set in service.

Options and default values

{
  serviceOptions: [], // custom arguments to azure.createBlobService
  containerName: null, // container name, required
  containerDelete: false, // deletes container if it exists
  containerOptions: {publicAccessLevel: "blob"}, // container options
  metadata: {}, // file metadata properties
  gzip: false // gzip files
};

Gruntfile example

grunt.initConfig({
  'azure-storage': {
    options: {
      containerName: 'assets',
      gzip: true
    },
    files: 'assets/**/*'
  }
});
npm i grunt-azure-storage

Metadata

  • MIT
  • Whatever
  • Ketil Albertsen
  • released 3/22/2013

Downloads

Maintainers