Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/lassejlv/better-actionfile
ð ïļðĪŠ Fast and idiot proof task runner.
https://github.com/lassejlv/better-actionfile
Last synced: about 2 months ago
JSON representation
ð ïļðĪŠ Fast and idiot proof task runner.
- Host: GitHub
- URL: https://github.com/lassejlv/better-actionfile
- Owner: lassejlv
- Created: 2024-10-23T20:02:13.000Z (3 months ago)
- Default Branch: main
- Last Pushed: 2024-11-05T19:19:17.000Z (2 months ago)
- Last Synced: 2024-11-05T20:28:32.249Z (2 months ago)
- Language: TypeScript
- Homepage:
- Size: 4.88 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Actionfile
An fast and idiot proof task runner. Use a basic TOML file to define your tasks and run them with ease.
## Installation
Check the latest release for your platform and download the binary. You can also build from source. By downloading [Bun Runtime](https://bun.sh)
```bash
git clone https://github.com/lassejlv/better-actionfile && cd actionfile && bun run build --compile --minify index.ts --outfile build/actionfile
```## Usage
**action.toml**
```toml
[hello]
cmd = "echo Hello World"
``````bash
action # Will run the first command in action.toml otherwiese use action
```A better guide is coming soon.