run_it

Crates.iorun_it
lib.rsrun_it
version0.2.0
sourcesrc
created_at2023-11-28 19:30:16.753073
updated_at2023-11-29 19:35:47.598427
descriptionA simple task runner
homepage
repositoryhttps://github.com/Jak2k/run_it
max_upload_size
id1052306
size42,588
Jak2k (Jak2k)

documentation

README

run_it

A simple task runner for running tasks in every project, but with the same command.

Installation

cargo install run_it

Usage

Init

run init

Run development command

run dev

Run build command

run build

and so on...

Configuration

Config file

# Tasks.toml
[commands]
dev = "cargo run"
build = "cargo build --release"
<task_name> = "<command>"

Contributing

Feel free to open an issue or a pull request. Any help is appreciated!

Commit count: 17

cargo fmt