Skip to content

Latest commit

 

History

History
72 lines (59 loc) · 1012 Bytes

README.md

File metadata and controls

72 lines (59 loc) · 1012 Bytes

ABAKO

A simple tool for checking your active AWS resources.

Installation for development and testing

Create Python virtualenv

$ virtualenv venv-abako
$ source venv-abako/bin/activate

Install abako for local development

$ pip install --editable .

Using Abako

Show current options:

$ abako --help
usage: abako [OPTIONS] COMMAND [ARGS]...

Options:
  --help  Show this message and exit.

Commands:
  dynamo  show DynamoDB tables.
  ec2     show EC2 instances.
  ecr     show ECR repositories.
  elb     show Elastic Load Balancers.
  rds     show RDS instances.

Show DynamoDB tables:

$ abako dynamo

Show provisoned EC2 instances:

$ abako ec2

Show RDS databases:

$ abako rds

Show ECR (Docker) repositories:

$ abako ecr

Show Elastic Load Balancers:

$ abako elb

Makefile

Create wheel and sdist:

$ make sdist

Cleanup environment

$ make clean

Run tests:

$ make test