Skip to content
This repository was archived by the owner on Feb 15, 2026. It is now read-only.

Commit b9ca86e

Browse files
docs: fix README inconsistencies and outdated info (#5)
- Fix install URL: https://get.keyway.shhttps://keyway.sh/install.sh - Fix flag: --env → -e - Remove non-existent --ci flag reference - Fix example: keyway pull --env production → keyway pull -e production Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com>
1 parent 2efe56f commit b9ca86e

2 files changed

Lines changed: 8 additions & 8 deletions

File tree

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ brew install keywaysh/tap/keyway
4040
### Install Script
4141

4242
```bash
43-
curl -fsSL https://get.keyway.sh | sh
43+
curl -fsSL https://keyway.sh/install.sh | sh
4444
```
4545

4646
### npx (no install)
@@ -85,7 +85,7 @@ Never write secrets to disk. Inject them directly into your process:
8585

8686
```bash
8787
keyway run -- npm start
88-
keyway run --env production -- ./my-app
88+
keyway run -e production -- ./my-app
8989
```
9090

9191
Secrets exist only in memory. When the process exits, they're gone.
@@ -135,7 +135,7 @@ We can't read your secrets. Even if our database leaks, attackers get encrypted
135135

136136
| Variable | Description |
137137
|----------|-------------|
138-
| `KEYWAY_TOKEN` | Auth token for CI/CD (use `keyway login --ci`) |
138+
| `KEYWAY_TOKEN` | Auth token for CI/CD (create in Dashboard > API Keys) |
139139
| `KEYWAY_API_URL` | Custom API endpoint |
140140
| `KEYWAY_DISABLE_TELEMETRY=1` | Disable anonymous analytics |
141141

@@ -163,7 +163,7 @@ Use an API key for automation:
163163
# GitHub Actions example
164164
env:
165165
KEYWAY_TOKEN: ${{ secrets.KEYWAY_TOKEN }}
166-
run: keyway pull --env production
166+
run: keyway pull -e production
167167
```
168168
169169
Or use the [GitHub Action](https://github.com/keywaysh/keyway-action):

npm/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ brew install keywaysh/tap/keyway
4040
### Install Script
4141

4242
```bash
43-
curl -fsSL https://get.keyway.sh | sh
43+
curl -fsSL https://keyway.sh/install.sh | sh
4444
```
4545

4646
### npx (no install)
@@ -85,7 +85,7 @@ Never write secrets to disk. Inject them directly into your process:
8585

8686
```bash
8787
keyway run -- npm start
88-
keyway run --env production -- ./my-app
88+
keyway run -e production -- ./my-app
8989
```
9090

9191
Secrets exist only in memory. When the process exits, they're gone.
@@ -135,7 +135,7 @@ We can't read your secrets. Even if our database leaks, attackers get encrypted
135135

136136
| Variable | Description |
137137
|----------|-------------|
138-
| `KEYWAY_TOKEN` | Auth token for CI/CD (use `keyway login --ci`) |
138+
| `KEYWAY_TOKEN` | Auth token for CI/CD (create in Dashboard > API Keys) |
139139
| `KEYWAY_API_URL` | Custom API endpoint |
140140
| `KEYWAY_DISABLE_TELEMETRY=1` | Disable anonymous analytics |
141141

@@ -163,7 +163,7 @@ Use an API key for automation:
163163
# GitHub Actions example
164164
env:
165165
KEYWAY_TOKEN: ${{ secrets.KEYWAY_TOKEN }}
166-
run: keyway pull --env production
166+
run: keyway pull -e production
167167
```
168168
169169
Or use the [GitHub Action](https://github.com/keywaysh/keyway-action):

0 commit comments

Comments
 (0)