1.0.0 • Published 6 years ago

generator-addon-azure-deploy v1.0.0

Weekly downloads
3
License
MIT
Repository
github
Last release
6 years ago

: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.