claude-remote-approver 0.7.2 → 0.7.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -2
- package/package.json +1 -1
- package/src/setup.mjs +1 -1
package/README.md
CHANGED
|
@@ -215,14 +215,14 @@ Then subscribe to the topic on your self-hosted server in the ntfy app.
|
|
|
215
215
|
|
|
216
216
|
### Using authenticated topics
|
|
217
217
|
|
|
218
|
-
If
|
|
218
|
+
If you are running a self-hosted ntfy server that requires authentication, you can configure Basic Auth credentials. If you are using the public ntfy.sh server, you do not need this — select "n" when prompted during setup.
|
|
219
219
|
|
|
220
220
|
**Option 1: Interactive setup**
|
|
221
221
|
|
|
222
222
|
```bash
|
|
223
223
|
claude-remote-approver setup
|
|
224
224
|
# ... after topic generation, you will be asked:
|
|
225
|
-
# Use authenticated topics? (y/n): y
|
|
225
|
+
# Use authenticated topics? (only for self-hosted ntfy servers) (y/n): y
|
|
226
226
|
# Username: myuser
|
|
227
227
|
# Password: mypassword
|
|
228
228
|
```
|
package/package.json
CHANGED
package/src/setup.mjs
CHANGED
|
@@ -114,7 +114,7 @@ export async function runSetup({
|
|
|
114
114
|
config.topic = topic;
|
|
115
115
|
|
|
116
116
|
if (prompt) {
|
|
117
|
-
const useAuth = await prompt("Use authenticated topics? (y/n): ");
|
|
117
|
+
const useAuth = await prompt("Use authenticated topics? (only for self-hosted ntfy servers) (y/n): ");
|
|
118
118
|
if (useAuth?.toLowerCase() === "y") {
|
|
119
119
|
config.ntfyUsername = await prompt("Username: ");
|
|
120
120
|
const promptSecretFn = promptSecret || prompt;
|