Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

dce-dev-wizard

harvard-edtech378MIT1.22.0TypeScript support: included

Wizard for managing development apps at Harvard DCE.

DCE, Harvard, Development

readme

dce-dev-wizard

Wizard for managing development apps at Harvard DCE.

Quick Start

Install the wizard into your project:

npm i --save-dev dce-dev-wizard

Add a dceConfig.json file to the root folder of your project that contains all existing deployments (caccl-deploy services):

{
  "dbName": "immersive-player-store",
  "deployments": [
    {
      "name": "Stage",
      "app": "courseadmintools-stage",
      "profile": "stage"
    },
    {
      "name": "Prod",
      "app": "courseadmintools",
      "profile": "prod"
    }
  ],
  "relatedClusters": [
    {
      "name": "Opencast Dev 10",
      "cluster": "opencast-ecs-immersive"
    }
  ]
}

Where "deployments" is an array of existing caccl-deploy services. "name" is a human-readable name/description of the deployment, "app" is the caccl-deploy app name, and "profile" is the aws profile associated with accessing that service.

In your package.json, add to the end of your top-level build script:

"build": "[...] && npm explore dce-dev-wizard -- npm run build-error-docs"

Whenever you build, we will then update your error docs in the /docs folder.

changelog

1.0.2

Updated to caccl-deploy v0.12.0