Metadata-Version: 2.1
Name: leona
Version: 1.0.4
Summary: CLI for DevOps Integration
Home-page: https://bitbucket.org/hlcn/leona
Author: Juan Guillermo Escalona
Author-email: j.escalona@hlcn.mx
License: UNKNOWN
Platform: UNKNOWN
Requires-Python: >=3.7.6
Description-Content-Type: text/markdown
Requires-Dist: bullet (==2.1.0)
Requires-Dist: click (==7.1.2)
Requires-Dist: jira (==2.0.0)
Requires-Dist: pymsteams (==0.1.12)
Requires-Dist: python-dotenv (==0.13.0)
Requires-Dist: PyYAML (==5.3.1)
Requires-Dist: requests (==2.23.0)
Requires-Dist: questionary (==1.5.2)

![banner](https://emojipedia-us.s3.dualstack.us-west-1.amazonaws.com/thumbs/120/apple/237/lion-face_1f981.png)

# Leona

CLI for DevOps Integration

## Install

```
$ pip install leona
```

## Initial Setup

1.- Run the command `leona`

```
$ leona
```

The first time you run the command `leona`, It will create a config file named `leona_config.yml` in your home folder.

2.- Open the config file.

```
$ code ~/leona_config.yml
```

OR

```
vi ~/leona_config.yml
```

3.- Fill in your credentials

```yaml
---
bitbucket:
  username: your_username
  password: your_password
jira:
  username: your_username
  token: your_token
teams:
  webhook: your_webhook
```

4.- You are good to go

```
$ leona

Usage: leona [OPTIONS] COMMAND [ARGS]...

Options:
  --help  Show this message and exit.

Commands:
  build
  build-prod
  commitslog
  getissues
  getprojects
  jiralogs
  pr
  push
  sendmessage
  test
```


