Skip to content

Latest commit

 

History

History
46 lines (39 loc) · 752 Bytes

README.md

File metadata and controls

46 lines (39 loc) · 752 Bytes

Scriptz

Configuration file based script runner

Getting started (Code)

$ npm install --save scriptz
const run = require('scriptz').run

run(configuration).subscribe(...) // Observable

Getting started (CLI)

$ npm install -g scriptz
$ scriptz run --config config.yaml

Create a config file in yaml.

options:
  retry_count: 3
  env:
    FOO: bar
start:
  name: Main
  flow: sequential
  steps:
    - name: Clean
      script: clean.sh
      arguments:
        - foo
      output_file: clean.log
      retry_count: 1
      env:
        FOO: Test
    - name: Install
      script: install.sh
      retry_count: 1
      output_file: install.log

See the full documentation