/run-cli

A CLI for running npm-like scripts

Primary LanguagePython

Run

Install

pip install -U run-scripts

Basic Usage

run init [--short]
# Creates either a runfile.yml or run.yml file in the current directory

run [script]
# Runs the script defined in the runfile.yml or run.yml file

Examples

runfile.yml

scripts:
    lint: "poetry run black ."
    build: 
        - "run lint"
        - "docker build -t image ."