wachi 0.3.17 → 0.3.20
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 +10 -0
- package/package.json +6 -6
package/README.md
CHANGED
|
@@ -168,8 +168,18 @@ All fields are optional with sensible defaults. An empty config file is valid.
|
|
|
168
168
|
|
|
169
169
|
| Variable | Purpose |
|
|
170
170
|
|----------|---------|
|
|
171
|
+
| `WACHI_APPRISE_URL` | Override notification destination for ALL channels |
|
|
172
|
+
| `WACHI_ARCHIVE_ACCESS_KEY` | Optional Internet Archive access key for authenticated Wayback submissions |
|
|
173
|
+
| `WACHI_ARCHIVE_SECRET_KEY` | Optional Internet Archive secret key for authenticated Wayback submissions |
|
|
174
|
+
| `WACHI_CONFIG_PATH` | Custom config file path |
|
|
175
|
+
| `WACHI_DB_PATH` | Custom database path |
|
|
176
|
+
| `WACHI_NO_ARCHIVE` | Set to `1` to disable auto-archiving of notified URLs |
|
|
171
177
|
| `WACHI_NO_AUTO_UPDATE` | Set to `1` to disable auto-update |
|
|
172
178
|
|
|
179
|
+
Notified item URLs are archived to the Wayback Machine by default. If archive keys are unset,
|
|
180
|
+
`wachi` falls back to the anonymous save endpoint. Set both archive keys for authenticated POST
|
|
181
|
+
submissions and higher Wayback limits.
|
|
182
|
+
|
|
173
183
|
## Design
|
|
174
184
|
|
|
175
185
|
- **Stateless checks** -- `wachi check` is a one-shot command. Bring your own scheduler (cron, crnd, systemd, launchd)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "wachi",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.20",
|
|
4
4
|
"description": "Subscribe any link and get notified on change",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
@@ -47,10 +47,10 @@
|
|
|
47
47
|
"zod-validation-error": "5.0.0"
|
|
48
48
|
},
|
|
49
49
|
"optionalDependencies": {
|
|
50
|
-
"@wachi-cli/darwin-arm64": "0.3.
|
|
51
|
-
"@wachi-cli/darwin-x64": "0.3.
|
|
52
|
-
"@wachi-cli/linux-arm64": "0.3.
|
|
53
|
-
"@wachi-cli/linux-x64": "0.3.
|
|
54
|
-
"@wachi-cli/win32-x64": "0.3.
|
|
50
|
+
"@wachi-cli/darwin-arm64": "0.3.20",
|
|
51
|
+
"@wachi-cli/darwin-x64": "0.3.20",
|
|
52
|
+
"@wachi-cli/linux-arm64": "0.3.20",
|
|
53
|
+
"@wachi-cli/linux-x64": "0.3.20",
|
|
54
|
+
"@wachi-cli/win32-x64": "0.3.20"
|
|
55
55
|
}
|
|
56
56
|
}
|