https://github.com/leegeunhyeok/floy
🌊 Commands flow executer
https://github.com/leegeunhyeok/floy
Last synced: 24 days ago
JSON representation
🌊 Commands flow executer
- Host: GitHub
- URL: https://github.com/leegeunhyeok/floy
- Owner: leegeunhyeok
- License: mit
- Created: 2022-07-12T10:08:34.000Z (almost 3 years ago)
- Default Branch: master
- Last Pushed: 2022-07-13T17:51:07.000Z (almost 3 years ago)
- Last Synced: 2025-03-14T16:17:42.434Z (about 2 months ago)
- Language: TypeScript
- Homepage:
- Size: 58.6 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# floy
commands flow executer
## 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)