UNPKG

@dev-thought/nx-deploy-it

Version:

[![npm version](https://badge.fury.io/js/%40dev-thought%2Fnx-deploy-it.svg)](https://www.npmjs.com/package/@dev-thought/nx-deploy-it) [![The MIT License](https://img.shields.io/badge/license-MIT-orange.svg?color=blue&style=flat-square)](http://opensource.

43 lines (42 loc) 1.01 kB
{ "$schema": "http://json-schema.org/schema", "id": "NxDeployItInit", "title": "Add nx-deploy-it cloud configuration for an application", "type": "object", "properties": { "project": { "type": "string", "description": "The name of the project.", "$default": { "$source": "projectName" } }, "provider": { "type": "string", "description": "Your cloud provider", "x-prompt": { "message": "Please choose your provider", "type": "list", "items": [ { "label": "AWS", "value": "aws" }, { "label": "Azure", "value": "azure" }, { "label": "Google Cloud Platform", "value": "gcp" } ] } }, "customDomainName": { "type": "string", "description": "Your custom domain which will be mapped to the static website / cdn" } }, "required": ["provider"] }