Sha256: 910e9573c92a2b25bd8f01b8e5ef05e20fdc26161be3e605e326661dbdfa99fc
Contents?: true
Size: 889 Bytes
Versions: 10
Compression:
Stored size: 889 Bytes
Contents
## Examples cb deploy PROJECT_NAME # explicitly specify project-name cb deploy # infers the CodeBuild name from the parent folder It is useful to just see the generated CloudFormation template with `--noop` mode: cb deploy PROJECT_NAME --noop # see generated CloudFormation template ## Types By default, the codebuild tool looks up files in the `.codebuild` folder. Example: .codebuild/buildspec.yml .codebuild/project.rb .codebuild/role.rb ### Examples cb deploy PROJECT_NAME --type deploy This will look up buildspec.yml, project.rb, and role.rb files in the `.codebuild/deploy` folder. So: .codebuild/deploy/buildspec.yml .codebuild/deploy/project.rb .codebuild/deploy/role.rb Likewise `cb deploy PROJECT_NAME --type unit` would result in: .codebuild/unit/buildspec.yml .codebuild/unit/project.rb .codebuild/unit/role.rb
Version data entries
10 entries across 10 versions & 1 rubygems