UNPKG

dce-dev-wizard

Version:

Wizard for managing development apps at Harvard DCE.

25 lines (24 loc) 557 B
import Deployment from './Deployment'; /** * Configuration file * @author Gabe Abrams */ declare type Config = { dbName?: string; deployments: Deployment[]; customStackDeploymentProcess: { description: string; steps: Array<{ title: string; description: string; command?: string; askUserBeforeContinuing?: boolean; dontClearBefore?: boolean; }>; }; relatedClusters?: { name: string; cluster: string; }[]; }; export default Config;