generator-addon-azure-deploy

Add Azure deployment to ngX-Rocket apps

Usage no npm install needed!

<script type="module">
  import generatorAddonAzureDeploy from 'https://cdn.skypack.dev/generator-addon-azure-deploy';
</script>

README

:rocket: generator-addon-azure-deploy

NPM version Build status Node version XO code style License

Add Azure deployment to ngX-Rocket apps

This add-on configures Azure and adds a deploy script to deploy your application using Azure blob storage hosting.

The setup and deployment is done through the @azure/ng-deploy tool.

Requirements

An Azure account is needed to use this add-on. You can create a free account following this link.

Usage

Using create-ngx you can get started directly without installing anything:

  1. Generate a new project and follow instructions:

    npm init ngx --addons addon-azure-deploy
    
  2. Deploy your app

    npm run deploy
    

With local installation

If you prefer to use it locally, install ngX-Rocket and this add-on:

npm install -g generator-ngx-rocket generator-addon-azure-deploy

Then:

  1. Generate a new project and follow instructions:

    ngx new
    
  2. Deploy your app

    npm run deploy
    

See ngX-Rocket CLI for more information.