dce-dev-wizard
Version:
Wizard for managing development apps at Harvard DCE.
20 lines (17 loc) • 325 B
text/typescript
import Deployment from './Deployment'
/**
* Configuration file
* @author Gabe Abrams
*/
type Config = {
// Database name
dbName?: string,
// List of deployments
deployments: Deployment[],
// List of related clusters
relatedClusters?: {
name: string,
cluster: string,
}[],
};
export default Config;