Skip to content
This repository has been archived by the owner on Jan 11, 2021. It is now read-only.

sinedied/addon-azure-deploy

Repository files navigation

[DEPRECATED]: This add-on has now been fully integrated into the latest ngx-rocket version.

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