# Chuy
![CodeQL](https://github.com/UltiRequiem/chuy/workflows/CodeQL/badge.svg)
![PyTest](https://github.com/UltiRequiem/chuy/workflows/PyTest/badge.svg)
![Pylint](https://github.com/UltiRequiem/chuy/workflows/Pylint/badge.svg)
[![Code Style](https://img.shields.io/badge/Code%20Style-Black-000000.svg)](https://github.com/psf/black)
[![PyPi Version](https://img.shields.io/pypi/v/chuy)](https://pypi.org/project/chuy)
![Repo Size](https://img.shields.io/github/repo-size/ultirequiem/chuy?style=flat-square&label=Repo)
[![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg)](https://opensource.org/licenses/MIT)
![Lines of Code](https://img.shields.io/tokei/lines/github.com/UltiRequiem/chuy?color=blue&label=Total%20Lines)
Set alias to long commands and speed up your workflow,
inspired in tools like [yarn](https://yarnpkg.com) and [npm](https://github.com/npm/cli).
Although Chuy is written in Python, it can be used for projects of any language,
and even folders that are not projects!
**Note:** this tool is actively used by its primary author.
He's happy to review pull requests / respond to issues you may discover.
## Install
You can install [Chuy](https://pypi.org/project/chuy) from PyPI like any other package:
```bash
pip install chuy
```
To get the last version:
```bash
pip install git+https:/github.com/UltiRequiem/chuy
```
If you use Linux, you may need to install this with sudo to
be able to access the command throughout your system.
## Example Configuration file
Using `JSON` format:
```json
{
"format": "poetry run black .",
"lint": "poetry run pylint chuy tests",
"tests": "poetry run pytest",
"package": "poetry build && poetry publish"
}
```
> Example: [`chuy.json`](./chuy.json)
Using `TOML` format:
```toml
[chuy]
format = "poetry run black ."
lint = "poetry run pylint chuy tests"
tests = "poetry run pytest"
package = "poetry build && poetry publish"
```
> Example: [`chuy.toml`](./chuy.toml)
Using `pyproject.toml` file:
```toml
[tool.chuy]
format = "poetry run black ."
lint = "poetry run pylint chuy tests"
tests = "poetry run pytest"
package = "poetry build && poetry publish"
```
> Example: [`pyproject.toml`](./pyproject.toml)
Usually the configuration file goes in the root of your project but it can really go anywhere.
## Usage
After having defined the commands in the [chuy.json](#example-configuration-file) file,
you can now execute them as follows:
```bash
chuy format
$ poetry run black .
....
```
This varies depending on the commands you
have written in the [chuy file](#example-configuration-file).
```bash
chuy lint
$ poetry run pylint chuy tests
....
```
You can also pass multiple commands:
```bash
chuy lint format tests
$ poetry run pylint chuy tests
....
$ poetry run black .
....
$ poetry run pytest
....
```
### Tricks
If you do not pass any command, you will get a menu with all the available commands,
then you will be asked which of them you want to execute,
here you can pass more than one command if you want.
If you want to integrate this tool with Poetry, try: [UltiRequiem/poetry-chuy-plugin](https://github.com/UltiRequiem/poetry-chuy-plugin)
### Screenshots
Normal usage:
![Screenshot Normal Usage](https://i.imgur.com/sOu86gu.png)
And if you don't pass any command:
![Screenshot Menu](https://i.imgur.com/nFd4Bz9.png)
### License
Chuy is licensed under the [MIT License](./LICENSE).