floy
v0.1.0
Published
commands flow executer
Downloads
1
Readme
floy
commands flow executer
Installation
npm install -g floy
Usage
- Workflow configuration
# workflow.yml title: floy-demo version: 1.0.0 workflows: greeting: - echo Welcome to floy! get_node_version: - node -v waiting_3s: - sleep 3 clone_floy: - git clone https://github.com/leegeunhyeok/floy.git - cd floy download_dependencies: - npm install finish: - echo Done
- title (optional)
- version (optional)
- workflows (required)
- task name with commands
- Run scripts via floy
floy -f workflow.yml