Skip to content

Latest commit

 

History

History
15 lines (10 loc) · 898 Bytes

ApiCommand.md

File metadata and controls

15 lines (10 loc) · 898 Bytes

ApiCommand

Properties

Name Type Description Notes
name String Name of the command, as presented on the command line, or if the command is packaged as a Docker container, as presented to `docker pull`. [optional]
env List<String> Environment variables set before running this Command. [optional]
args List<String> Command-line arguments used when executing this Command. [optional]
dir String Working directory (relative to project source root) used when running this Command. [optional]
id String Optional unique identifier for this Command, used in wait_for to reference this Command as a dependency. [optional]
waitFor List<String> The ID(s) of the Command(s) that this Command depends on. [optional]