abelmokadem / scriptz

Configuration file based script runner

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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

About

Configuration file based script runner


Languages

Language:TypeScript 99.3%Language:JavaScript 0.7%