Metadata-Version: 2.1
Name: okapi-cp
Version: 0.1.3
Summary: CLI to deploy okapi and its dependencies.
License: Apache-2
Author: Your Name
Author-email: you@example.com
Requires-Python: >=3.12,<4.0
Classifier: License :: Other/Proprietary License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.12
Requires-Dist: click (>=8.3.1,<9.0.0)
Description-Content-Type: text/markdown

# okapi-cp

okapi-cp is a command line tool for deploying Okapi and its dependencies for local testing or Kubernetes deployments.

## Installation

```sh
pip install okapi-cp
```

## Usage

Local deployment for testing:

```sh
export HMAC_KEY=$(openssl rand -hex 4)
export API_KEY=$(openssl rand -hex 4)
okapi-cp deploy local --hmac-key ${HMAC_KEY} --api-key ${API_KEY}
```

Kubernetes deployment:

```sh
okapi-cp deploy k8s --chart-repo oci://ghcr.io/okapi-core
```

