Skip to main content

Simplify the usage of containers

Project description

Get Started

Makim (or makim) is based on make and focus on improve the way to define tasks and dependencies. Instead of using the Makefile format, it uses yaml format.

The idea of this project is to offer a way to define tasks and dependencies with some control options, like conditionals if.

It allows a very easy way to define texts for documentation and extra parameters for each task.

Features

  • Help text as first-class in the .makim.yaml specification. It can be used by tasks and arguments.
  • Tasks have an option for arguments.
  • Tasks have an option for dependencies.
  • Dependencies can call a task with specific arguments.
  • Dependencies can have a conditional control flow (if).
  • Allow the creation of groups, so the tasks can be organized by topics.
  • Tasks and groups have an option for user defined variables and/or environment variables.
  • Access arguments, variables or environment variables via template (using Jinja2).
  • Option for using dot environment files using env-file key.

How to use it

First you need to place the config file .makim.yaml in the root of your project. This is an example of a configuration file:

version: 1.0.0
groups:
  default:
    env-file: .env
    tasks:
      clean:
        help: Use this task to clean up temporary files
        args:
          all:
            type: bool
            action: store_true
            help: Remove all files that are tracked by git
        run: |
          echo "remove file X"
      build:
        help: Build the program
        args:
          clean:
            type: bool
            action: store_true
            help: if not set, the clean dependency will not be triggered.
        dependencies:
          - task: clean
            if: {% raw %}${{ args.clean == true }}{% endraw %}
        run: |
          echo "build file x"
          echo "build file y"
          echo "build file z"

Some examples of how to use it:

  • run the build task: makim build

  • run the clean task: makim clean

  • run the build task with the clean flag: makim build --clean

The help menu for the .makim.yaml file would looks like this:

$ makim --help
usage: MakIm [--help] [--version] [--config-file MAKIM_FILE] [task]

MakIm is a tool that helps you to organize and simplify your helper commands.

positional arguments:
  task
    Specify the task command to be performed. Options are:

    default:
    --------
      default.clean => Use this task to clean up temporary files
        ARGS:
          --all: (bool) Remove all files that are tracked by git
      default.build => Build the program
        ARGS:
          --clean: (bool) if not set, the clean dependency will not be triggered.

options:
  --help, -h
    Show the help menu
  --version
    Show the version of the installed MakIm tool.
  --config-file MAKIM_FILE
    Specify a custom location for the config file.

If you have any problem, open an issue at: https://github.com/osl-incubator/makim

As you can see, the help menu automatically adds information defined by all the help key, inside the .makim.yaml file.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

makim-1.18.1.tar.gz (14.4 kB view details)

Uploaded Source

Built Distribution

makim-1.18.1-py3-none-any.whl (14.7 kB view details)

Uploaded Python 3

File details

Details for the file makim-1.18.1.tar.gz.

File metadata

  • Download URL: makim-1.18.1.tar.gz
  • Upload date:
  • Size: 14.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.8.4 CPython/3.11.10 Linux/6.8.0-1015-azure

File hashes

Hashes for makim-1.18.1.tar.gz
Algorithm Hash digest
SHA256 b269e68921e919edf53a189379f5aaa6787c2346d3081bf823a6b4ded193bfab
MD5 e71fbda763f1e8ce29e639941ceff836
BLAKE2b-256 657311df428018fc0a2a2039c80272fc941ccc83ebe69ed0030f92fa3cdd0347

See more details on using hashes here.

Provenance

File details

Details for the file makim-1.18.1-py3-none-any.whl.

File metadata

  • Download URL: makim-1.18.1-py3-none-any.whl
  • Upload date:
  • Size: 14.7 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.8.4 CPython/3.11.10 Linux/6.8.0-1015-azure

File hashes

Hashes for makim-1.18.1-py3-none-any.whl
Algorithm Hash digest
SHA256 6a06f0deadbae390a21b58a329d8b2be6236a371d80bb3e12c1373e65894e34a
MD5 79d983c9aa090cbbbecc4767eb2404b9
BLAKE2b-256 abe1ea03858d4b474bcbc205a11c2bcc3e01b9a375f97d1a110ce422d3055b41

See more details on using hashes here.

Provenance

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page