doit-cli-0.1.6 is not a library.
Visit the last successful build:
doit-cli-0.1.5
DOIT
A simple task runners for the lazy.
Installation
Usage
Getting Started
# do.yaml
env:
NAME: world
tasks:
hello:
cmd: echo $GREETING $NAME
env:
GREETING: Hello
Environment Variables
Global Environment Variables
# do.yaml
env:
NAME: world
tasks:
hello:
cmd: Hello $NAME
Overriding Environment Variables from Shell
# do.yaml
env:
NAME: jimmy
tasks:
hello:
cmd: Hello $NAME
Overriding Environment Variables from Task
# do.yaml
env:
NAME: jimmy
tasks:
hello:
cmd: Hello $NAME
env:
NAME: world
Subdirectories
├── parent
│ ├── child
├── do.yaml
# /parent/do.yaml
task:
pwd:
cmd: pwd
Subdirectories Local
├── parent
│ ├── child
├── do.yaml
# /parent/do.yaml
task:
pwd:
cmd: pwd
local: true
Nested do.yaml
files
# /parent/do.yaml
task:
hello:
cmd: echo hello world
# /parent/child/do.yaml
task:
greet:
cmd: doit hello