-
-
Save bitprophet/1038714 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## Normal/flat -- this is still the default output of fab --list: | |
Available commands: | |
build_docs | |
deploy | |
db.migrate | |
system.install_package | |
system.debian.update_apt | |
## Short -- eqiuvalent to --shortlist or, now, fab -F short --list: | |
build_docs | |
deploy | |
db.migrate | |
system.install_package | |
system.debian.update_apt | |
## Nested -- an optional high level view, fab -F nested --list: | |
## (and keep in mind one still has to *call* tasks via dotted notation) | |
Available commands: | |
build_docs | |
deploy | |
db: | |
migrate | |
system: | |
install_package | |
debian: | |
update_apt | |
## Alternate nested style 1: just a reminder | |
Available commands (remember to call as module.task!): | |
build_docs | |
deploy | |
db: | |
migrate | |
system: | |
install_package | |
debian: | |
update_apt | |
## Alternate nested style 2: obvious leaves | |
Available commands: | |
build_docs | |
deploy | |
db.migrate | |
system.install_package | |
system.debian.update_apt | |
## Alternate nested style 3: more dots | |
Available commands: | |
build_docs | |
deploy | |
db: | |
.migrate | |
system: | |
.install_package | |
.debian: | |
.update_apt |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment