Skip to content
This repository has been archived by the owner on Apr 6, 2023. It is now read-only.
/ azure-cdn-cli Public archive

Azure CLI utility to deploy to Azure Storage Accounts.

License

Notifications You must be signed in to change notification settings

mondora/azure-cdn-cli

Repository files navigation

⚠️ Deprecation notice: this package is not updated anymore ⚠️

You can replace any automated job with Azure CLI directly with:

# Delete the previous deployed artifacts
> az storage azcopy blob delete -c "\$web" --recursive

# Deploy the new ones
> az storage azcopy blob upload -c "\$web" -s "<artifact-dir>/*" --recursive

azure-cdn-cli

Utility CLI to deploy webapps to Azure Blob storage.

Env vars

This CLI use azure-storage under the hood so an AZURE_STORAGE_CONNECTION_STRING env var is required to grant access.

Usage

Via CLI

Install the CLI globally with:

# global install with npm
npm i -g @mondora/azure-cdn-cli

# or yarn
yarn add global @mondora/azure-cdn-cli

# CLI usage
azure-cdn-cli deploy --static --erase

Via package.json scripts

Install @mondora/azure-cdn-cli as a dev dependency:

yarn add --dev @mondora/azure-cdn-cli

Update your package.json:

{
  "scripts": {
    "deploy": "azure-cdn-cli deploy --static --erase"
  }
}

Commands

deploy

The only command provided: deploy your app or directory to Azure Blob storage.

Help screenshot

Options

--dir

App directory to deploy.

Defaults to: "./build".

--container

Azure Blob container name. See here for further information.

Defaults to: "./$root".

--folder

Mimics directory hierarchy as in a traditional file system.

Schema: AzureStorageAccountName/Container/Folder/**.

--options

Container creation options. See here for further documentation.

--metadata

Metadata to be attached to blobs.

--concurrency

Number of parallel active network requests.

--erase

Delete recursively the content of the Azure Blob storage.

--zip

Use zip during file upload.

--test

Flag for dry run.

--static

Flag used as a shorthand for the following azure-storage configs.

Should be a sane default to deploy SPAs.

Container name Public access Cache control
$web blob "private, no-cache, no-store, must-revalidate"

About

Azure CLI utility to deploy to Azure Storage Accounts.

Resources

License

Stars

Watchers

Forks

Packages

No packages published