Metadata-Version: 2.1
Name: secrets-cli
Version: 0.1.3
Summary: Run any applications with secrets stored in the Pangea Vault
Author: Pranav
Requires-Python: >=3.7.2,<4.0
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Requires-Dist: InquirerPy (==0.3.4)
Requires-Dist: pangea-sdk (==1.8.0)
Requires-Dist: typer[all] (==0.9.0)
Description-Content-Type: text/markdown

# Secrets CLI

A tool to dynamically load your secrets from the secure vault into your runtime environment.

## Getting Start

Install the CLI using pip
```bash
$ pip install secrets-cli
```

Setup the CLI with Pangea's vault. Visit [Pangea](https://console.pangea.cloud/service/vault/data) and create a new token.
```bash
$ pangea setup
```
Enter your pangea token when prompted.

Now, select folder to load your secrets from
```bash
$ pangea select --folder-name <FOLDER_NAME>
```

You're all set 🏎️ \
Run any application in any environment and pull your secrets securely from Pangea using the `pangea run`

```bash
$ pangea run npm run dev
```

OR

```bash
$ pangea run python3 app.py
```
