Crates.io | maid |
lib.rs | maid |
version | 1.2.0 |
source | src |
created_at | 2018-03-06 04:49:59.71885 |
updated_at | 2024-01-28 08:21:19.657453 |
description | 🔨 An easy to use make alternative. |
homepage | |
repository | https://github.com/exact-rs/maid |
max_upload_size | |
id | 54070 |
size | 125,210 |
Maid is a task runner / build tool that aims to be simpler and easier to use than, for example, GNU Make.
Tasks are stored in a file called maidfile
using the TOML syntax.
See the installation section for how to install just on your computer. Try running maid --version
to make sure that it's installed correctly.
Once maid is installed and working, create a file named maidfile in the root of your project with the following contents:
[tasks.hello]
info = "this is a comment"
script = "echo 'hello world'"
Running maid with no arguments shows a list of tasks in the maidfile:
~ $ maid
? Select a task to run:
> hello (this is a comment)
[↑↓ to move, enter to select, type to filter]
For more commands, check out maid --help
Pre-built binaries for Linux, MacOS, and Windows can be found on the releases page.
git clone https://github.com/exact-labs/maid.git
cargo
cargo build --release