Metadata-Version: 2.1
Name: cci-cli
Version: 0.1.1
Summary: This is a small CircleCI CLI that allows you to interact with the CircleCI API v2
Author: Lightspeed Hospitality
Author-email: pt.hospitality.dev@lightspeedhq.com
Requires-Python: >=3.7,<4.0
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Requires-Dist: confuse (>=1.3,<2.0)
Requires-Dist: python-dateutil (>=2.8,<3.0)
Requires-Dist: requests (>=2.24,<3.0)
Requires-Dist: tabulate (>=0.8,<0.9)
Requires-Dist: timeago (>=1.0,<2.0)
Requires-Dist: typer (>=0.3,<0.4)
Description-Content-Type: text/markdown

# CircleCI CLI

[![CircleCI](https://circleci.com/gh/lightspeed-hospitality/circleci-cli.svg?style=svg&circle-token=639e11bbab82eb96b4cc285724c17de30fecf8ce)](https://app.circleci.com/pipelines/github/lightspeed-hospitality/circleci-cli)

<p align="center">
  <a href="#development">Development</a> •
  <a href="#architecture--documentation">Documentation</a> •
  <a href="#how-to-contribute">Contribute</a> •
  <a href="#support--feedback">Support</a>
</p>

🛠 WIP
This is a small CircleCI CLI that allows you to interact with the [CircleCI API v2](https://circleci.com/docs/api/v2/).

---

## Use it!

```console
docker pull lightspeedhq-ls-container-dev.jfrog.io/circleci-cli
docker run -it --rm --volume=$HOME/.config/circleci-cli:/root/.config/circleci-cli lightspeedhq-ls-container-dev.jfrog.io/circleci-cli
bash-5.0# cci --help
Usage: cci [OPTIONS] COMMAND [ARGS]...

Options:
  --install-completion [bash|zsh|fish|powershell|pwsh]
                                  Install completion for the specified shell.
  --show-completion [bash|zsh|fish|powershell|pwsh]
                                  Show completion for the specified shell, to
                                  copy it or customize the installation.

  --help                          Show this message and exit.

Commands:
  config
  pipelines
```

### Create an alias

You can also create an alias for `cci` in your zsh or bash config:
```
alias cci='docker pull lightspeedhq-ls-container-dev.jfrog.io/circleci-cli && docker run -it --rm --volume=$HOME/.config/circleci-cli:/root/.config/circleci-cli lightspeedhq-ls-container-dev.jfrog.io/circleci-cli'
```

### Commands

* Display your config:
```
cci config show
```

* Create your config file:
```
# with prompts:
cci config setup

# using flags:
cci config setup --vcs {gh,bb} --org <your-org> --token <circle-ci-api-token>
````
_Note_: To create your config you will need to have a Personal CircleCI API Token, that can be created [here](https://app.circleci.com/settings/user/tokens).


* List the last 20 pipelines for <project-name>
```
cci pipelines list <project-name>
```

* Trigger a build for `<project-name>` using `<branch>`
```
cci pipelines trigger <project-name> --branch <branch> [--wait-for-result] [--timeout <min>] [--params key=value,...]
```

## Development

### Setup

For development, best create a virtual environment and install all dependencies:
```console
python3 -m venv venv
. venv/bin/activate
pip install -r requirements.txt
```

### Build

You can create a docker image on your local machine by:
```console
docker build . -t circleci-cli
```

### Run

In order to run the build you created on your local machine, run:
```console
docker run -it --rm --volume=$HOME/.config/circleci-cli:/root/.config/circleci-cli circleci-cli
```

## How to Contribute

In order to contribute you just have to have Python installed on your machine. In case you do not have it installed get it from [python.org](https://www.python.org/downloads/).

#### Linting Tool

This project is using [pre-commit](https://pre-commit.com/) to enable linting and auto-formatting as a pre-commit hook.
The hooks are configured in [.pre-commit-config.yaml](./.pre-commit-config.yaml).

To install the hooks you have to run the following command (only once):
```bash
. venv/bin/activate
pre-commit install
```

Then you can trigger all the hooks manually by running:
```bash
. venv/bin/activate
pre-commit run --all-files
```

Additionally on every `git commit` the hooks will be triggered and have to pass.

#### How to run tests

You can run all the tests, by simply running:
```bash
. venv/bin/activate
python -m pytest
```



## Support & Feedback

Your contribution is very much appreciated. Feel free to create a PR or an Issue with your suggestions for improvements.

