We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7c8747b commit ca499ccCopy full SHA for ca499cc
1 file changed
README.md
@@ -38,13 +38,23 @@ cargo install --path .
38
Get your API key from **Linear Settings > API > Personal API keys**, then:
39
40
```bash
41
-lin config set-token
+lin auth login # interactive — saves as a named workspace
42
```
43
44
-Or set it via environment variable:
+Or set it directly:
45
46
47
-export LINEAR_API_KEY="lin_api_..."
+export LINEAR_API_KEY="lin_api_..." # environment variable (simplest)
48
+lin config set-token # save to config file
49
+```
50
+
51
+**Multiple workspaces:**
52
53
+```bash
54
+lin auth login # add each workspace by name
55
+lin auth list # see configured workspaces
56
+lin auth default myco # switch default
57
+lin --workspace other-org issues list # one-off override
58
59
60
## Usage
0 commit comments