{"id":18728819,"url":"https://github.com/yukitsune/dingus","last_synced_at":"2025-04-12T16:33:23.100Z","repository":{"id":246755645,"uuid":"791360380","full_name":"YuKitsune/dingus","owner":"YuKitsune","description":"A flexible task runner with a POSIX-style interface, designed as an alternative to Make.","archived":false,"fork":false,"pushed_at":"2024-10-21T07:51:15.000Z","size":2710,"stargazers_count":3,"open_issues_count":3,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2024-10-21T10:40:46.099Z","etag":null,"topics":["build-tool","devops","makefile","rust","task-runner"],"latest_commit_sha":null,"homepage":"https://www.dingus.sh","language":"Rust","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/YuKitsune.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-04-24T15:21:44.000Z","updated_at":"2024-10-21T07:51:13.000Z","dependencies_parsed_at":"2024-07-23T03:27:06.446Z","dependency_job_id":"5a8398a4-6d66-4bbe-9dd3-89845b2a7605","html_url":"https://github.com/YuKitsune/dingus","commit_stats":null,"previous_names":["yukitsune/dingus"],"tags_count":6,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/YuKitsune%2Fdingus","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/YuKitsune%2Fdingus/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/YuKitsune%2Fdingus/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/YuKitsune%2Fdingus/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/YuKitsune","download_url":"https://codeload.github.com/YuKitsune/dingus/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248596720,"owners_count":21130752,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["build-tool","devops","makefile","rust","task-runner"],"created_at":"2024-11-07T14:24:27.373Z","updated_at":"2025-04-12T16:33:23.066Z","avatar_url":"https://github.com/YuKitsune.png","language":"Rust","readme":"\u003ch1 align=\"center\"\u003e\n  Dingus\n\u003c/h1\u003e\n\n\u003ch3 align=\"center\"\u003e\n  A dead-simple task runner written in pure Rust.\n  \u003cbr\u003e\n  \u003cbr\u003e\n\n  [![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/yukitsune/dingus/ci.yml?branch=main)](https://github.com/YuKitsune/dingus/actions/workflows/ci.yml)\n  [![License](https://img.shields.io/github/license/YuKitsune/dingus)](https://github.com/YuKitsune/dingus/blob/main/LICENSE)\n  [![Latest Release](https://img.shields.io/github/v/release/YuKitsune/dingus?include_prereleases)](https://github.com/YuKitsune/dingus/releases)\n\u003c/h3\u003e\n\nDingus is a dead-simple task runner with a familiar POSIX-style interface.\nIt's lightweight, easy to use, and perfect for consolidating project-specific tasks.\n\n## Features\n\n- Designed from the ground-up as a command runner without the constraints of a build tool.\n- Supports Windows, macOS, and Linux, and isn't dependant on a specific Shell.\n- Provides a POSIX-style command-line interface allowing for nested subcommands, and variable substitution using command-line arguments.\n- Uses a simple YAML file for configuration.\n\n## Overview\n\n\u003e **Warning**\n\u003e Dingus is still in early development and it's configuration syntax and usage are subject to change.\n\nDingus relies on YAML for its configuration.\n\nIn your `Dingus.yaml`, you can define variables at the root level.\nThese variables are global, so they're available to all commands and subcommands throughout the file.\n\nExample:\n```yaml\nvariables:\n  name: Godzilla\n\ncommands:\n  greet:\n    action: echo Hello, $name!\n\n  pet:\n    action: echo You have petted $name!\n```\n\n```sh\n$ dingus greet\nHello, Godzilla!\n\n$ dingus pet\nYou have petted Godzilla!\n```\n\nYou can also define variables within commands.\nThese variables are available to the command and its subcommands.\n\n```yaml\ncommands:\n  greet:\n    variables:\n      name: Godzilla\n    action: echo Hello, $name!\n\n  pet:\n    variables:\n      name: Maxwell\n    action: echo You have petted $name!\n```\n\n```sh\n$ dingus greet\nHello, Godzilla!\n\n$ dingus pet\nYou have petted Maxwell!\n```\n\nActions represent the actual commands that get executed.\nWhen you invoke a command, its actions are run in sequence.\n\n```yaml\ncommands:\n  greet:\n    variables:\n      name: Godzilla\n\n    # Single action\n    action: echo Hello, $name!\n\n  pet:\n    variables:\n      name: Maxwell\n\n    # Multiple actions\n    actions:\n      - echo Petting $name...\n      - sleep 5\n      - echo You have petted $name!\n```\n\n```sh\n$ dingus greet\nHello, Godzilla!\n\n$ dingus pet\nPetting...\nYou have petted Maxwell!\n```\n\n## Learn more\n\nInterested in learning more? Check out the [docs](https://dingus.sh/docs/introduction)!\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fyukitsune%2Fdingus","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fyukitsune%2Fdingus","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fyukitsune%2Fdingus/lists"}