Skip to content

Commit bf8c35b

Browse files
sweetmantechclaude
andauthored
docs: add shell profile option for API key setup (#3)
* docs: add shell profile option for persistent API key setup Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * docs: add link to developer docs for API key generation Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> --------- Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 7f73fc8 commit bf8c35b

1 file changed

Lines changed: 10 additions & 1 deletion

File tree

README.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,21 @@ npm install -g @recoupable/cli
1212

1313
### Authenticate
1414

15-
Set your API key as an environment variable:
15+
Get your API key from the [Recoup Developer Dashboard](https://developers.recoupable.com/api-reference/introduction#getting-your-api-key), then set it as an environment variable:
1616

1717
```bash
1818
export RECOUP_API_KEY=your-api-key
1919
```
2020

21+
To persist it across sessions, add it to your shell profile:
22+
23+
```bash
24+
echo 'export RECOUP_API_KEY=your-api-key' >> ~/.zshrc
25+
source ~/.zshrc
26+
```
27+
28+
> Use `~/.bashrc` instead if you use bash.
29+
2130
### Verify
2231

2332
```bash

0 commit comments

Comments
 (0)