@dev-thought/nx-deploy-it
Version:
[](https://www.npmjs.com/package/@dev-thought/nx-deploy-it) [](http://opensource.
43 lines (42 loc) • 1.01 kB
JSON
{
"$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"]
}