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