life-sciences-portal-cli
Version:
A CLI to generate and manage life sciences portals.
35 lines (34 loc) • 936 B
JSON
{
"$schema": "http://json-schema.org/schema",
"id": "LifeSciencesPortalSchematicsNew",
"type": "object",
"properties": {
"name": {
"description": "The name of the new project.",
"type": "string"
},
"portalType": {
"description": "The type of the project.",
"type": "string",
"default": "basic"
},
"sitemap": {
"description": "Whether to add a sitemap",
"type": "boolean",
"default": false
},
"internalCms": {
"description": "Whether to add an internal lightweight CMS",
"type": "boolean",
"default": false
},
"semanticVersioning": {
"description": "Whether to add semantic versioning",
"type": "boolean",
"default": false
}
},
"required": [
"name"
]
}