@harvey-au/hover 0.1.0 → 0.1.1
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 +12 -2
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -11,7 +11,17 @@ npm install -g @harvey-au/hover
|
|
|
11
11
|
## Usage
|
|
12
12
|
|
|
13
13
|
```sh
|
|
14
|
-
hover jobs generate
|
|
14
|
+
hover jobs generate [options]
|
|
15
15
|
```
|
|
16
16
|
|
|
17
|
-
|
|
17
|
+
### Options
|
|
18
|
+
|
|
19
|
+
| Flag | Description | Default |
|
|
20
|
+
| ------------------- | --------------------------------------- | --------------- |
|
|
21
|
+
| `--jobs <N>` | Jobs per batch | `3` |
|
|
22
|
+
| `--interval <dur>` | Batch interval (e.g. `30s`, `2m`) | `3m` |
|
|
23
|
+
| `--concurrency <N>` | Per-job concurrency `1-50`, or `random` | `random` |
|
|
24
|
+
| `--api-url <url>` | Target API base URL | `hover.fly.dev` |
|
|
25
|
+
|
|
26
|
+
See [GitHub releases](https://github.com/Harvey-AU/hover/releases) for
|
|
27
|
+
changelogs.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@harvey-au/hover",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"description": "CLI for the Hover cache-warming platform",
|
|
5
5
|
"bin": {
|
|
6
6
|
"hover": "bin/hover"
|
|
@@ -26,5 +26,5 @@
|
|
|
26
26
|
"type": "git",
|
|
27
27
|
"url": "https://github.com/Harvey-AU/hover"
|
|
28
28
|
},
|
|
29
|
-
"license": "
|
|
29
|
+
"license": "MIT"
|
|
30
30
|
}
|