An open API service indexing awesome lists of open source software.

https://github.com/leegeunhyeok/floy

🌊 Commands flow executer
https://github.com/leegeunhyeok/floy

Last synced: 24 days ago
JSON representation

🌊 Commands flow executer

Awesome Lists containing this project

README

        

# floy

commands flow executer

floy

## Installation

```bash
npm install -g floy
```

## Usage

- Workflow configuration
```yml
# 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
```bash
floy -f workflow.yml
```
## LICENSE

[MIT](./LICENSE)