GithubHelp home page GithubHelp logo

prajapati-kaushik / commando Goto Github PK

View Code? Open in Web Editor NEW

This project forked from linkorb/commando

1.0 0.0 0.0 108 KB

Commando: Generic background job runner

License: MIT License

PHP 99.80% JavaScript 0.20%

commando's Introduction

Commando

Commando is a generic job-runner.

You can define your own commands in Json or Yaml files, and process jobs from different stores such as a directory of files, or a database.

It's goal is to make it easy to implement background jobs into your application.

An example workflow:

  1. You define a command "hello" in commando.yml:
commands:
  hello:
    template: echo "Hello {{ greeted }}"
    inputs:
      greeted:
        default: world
  1. Your app writes a job into /your/commando-path/new called 1.json:
{
  "command": "hello",
  "inputs": {
    "greeted": "universe"
  }
}
  1. You (or cron) runs commando run.
  2. Commando will check for new job files in the configured store (in this case a directory), execute the command, replacing arguments in the template with the passed job arguments, finally executing echo "Hello universe"
  3. Commando reports the job status back to the store, including exit codes, start/end times, total duration, and stdout and stderr
  4. Your app reports back to the user if needed, based on the status report.

Stores:

  • JsonDirJobStore: Manages jobs through json files with a simple directory structure
  • PdoJobStore: Manages jobs through a database table
  • CamundaJobStore: Camunda External Task client

Use-cases

You can replace the template with much more complex command-lines or shell-scripts.

Your app should treat these jobs as "fire-and-forget", meaning the app should not block, waiting for response. It's most ideal in scenarios where your triggers commands and doesn't need to know about the response right away:

Examples:

  • Update PDFs or reports in the background
  • Send emails and notifications
  • Create a database backup
  • Process uploaded image files
  • ...etc

Conventional Commits

This repository is using Conventional Commits

Please run npm install at least once, in order to install the appropriate tooling and git hooks (this helps you to follow the conventions by linting them before actually committing).

In short: you should prefix your commit titles with the correct type (i.e. feat: my new cool feature). This helps to create clear commit histories, automatically handles semver, tagging and CHANGELOG.md generation.

If you'd like to reference a card in our planning system, simply add a #123 to the end of your commit title. The card will be correctly linked from the changelogs etc.

To publish a new release, simply run npm run publish. This will update the changelog, and manifests like composer.json, package.json, etc to a new tag. The tag follows Semver, and is selected based on your commit types since the last release.

License

Please refer to the included LICENSE.md file

Brought to you by the LinkORB Engineering team


Check out our other projects at engineering.linkorb.com.

Btw, we're hiring!

commando's People

Contributors

joostfaassen avatar

Stargazers

Kaushik Prajapati avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.