Defining a domain

A domain is defined by a release configuration. In order to define a domain, you need to create a new release config yaml file in your repository

A simple release config can be defined as shown below

// Sample release config <business_domain.yaml>
releaseName:  # --> The name of the domain
pool: 
excludeAllPackageDependencies: true
includeOnlyArtifacts:   # --> Insert packages
  - 
releasedefinitionProperties:
  promotePackagesBeforeDeploymentToOrg: prod

The resulting file could be stored in your repository and utilized by the commands such as build, release etc.

Last updated