Skip to content

Commit f1ec7ca

Browse files
docs: fix install instructions — remove broken PyPI badges, point to GitHub install
1 parent 8c2ed52 commit f1ec7ca

1 file changed

Lines changed: 11 additions & 11 deletions

File tree

README.md

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -4,21 +4,21 @@
44

55
**Environment variable syncing, diffing, and secret rotation — with secret-store integrations.**
66

7-
[![PyPI](https://img.shields.io/pypi/v/rh-envault)](https://pypi.org/project/rh-envault/)
8-
[![Python](https://img.shields.io/pypi/pyversions/rh-envault)](https://pypi.org/project/rh-envault/)
9-
[![License](https://img.shields.io/pypi/l/rh-envault)](https://github.com/Coding-Dev-Tools/envault/blob/main/LICENSE)
7+
[![Python](https://img.shields.io/badge/python-3.10%2B-blue)](https://github.com/Coding-Dev-Tools/envault)
8+
[![License](https://img.shields.io/github/license/Coding-Dev-Tools/envault)](https://github.com/Coding-Dev-Tools/envault/blob/main/LICENSE)
109
[![CI](https://github.com/Coding-Dev-Tools/envault/actions/workflows/ci.yml/badge.svg)](https://github.com/Coding-Dev-Tools/envault/actions/workflows/ci.yml)
1110
[![Open Source Alternative](https://img.shields.io/badge/Open_Source_Alternative-%E2%87%92-blue?logo=opensourceinitiative)](https://www.opensourcealternative.to/project/envault)
12-
[![LibHunt](https://img.shields.io/badge/LibHunt-%E2%87%92-blue?logo=codeigniter)](https://www.libhunt.com/r/Coding-Dev-Tools/envault)
1311

1412
> **Star this repo** if you manage environment variables — it helps other developers find Envault!
1513
1614
**Why Envault?** Managing .env files across dev, staging, and prod is error-prone — copy-pasting secrets between environments, accidentally committing .env to git, rotating keys by hand across 5 files. Envault encrypts your .env files with a single master key, syncs them across environments, and rotates secrets without touching a text editor. One `envault push` encrypts and deploys. One `envault pull` decrypts and loads. No more plaintext secrets in .git history.
1715

1816
## Quick Start
1917

18+
> **Note:** rh-envault is not yet published to PyPI. Install directly from GitHub.
19+
2020
```bash
21-
pip install rh-envault
21+
pip install git+https://github.com/Coding-Dev-Tools/envault.git
2222

2323
# Initialize a project
2424
rh-envault init my-project
@@ -196,12 +196,12 @@ audit_log_path: .envault-audit.log
196196
197197
## Secret Store Integrations
198198
199-
| Store | Package | Install |
200-
|-------|---------|---------|
201-
| AWS SSM | `boto3` | `pip install rh-envault[awsssm]` |
202-
| HashiCorp Vault | `hvac` | `pip install rh-envault[vault]` |
203-
| Doppler | `requests` | `pip install rh-envault[doppler]` |
204-
| 1Password | `onepasswordconnectsdk` | `pip install rh-envault[onepassword]` |
199+
| Store | Package | Install (from GitHub) |
200+
|-------|---------|----------------------|
201+
| AWS SSM | `boto3` | `pip install "rh-envault[awsssm] @ git+https://..."` |
202+
| HashiCorp Vault | `hvac` | `pip install "rh-envault[vault] @ git+https://..."` |
203+
| Doppler | `requests` | `pip install "rh-envault[doppler] @ git+https://..."` |
204+
| 1Password | `onepasswordconnectsdk` | `pip install "rh-envault[onepassword] @ git+https://..."` |
205205

206206
## CI/CD Integration
207207

0 commit comments

Comments
 (0)