|
|
|
@ -7,12 +7,33 @@ Use cases:
|
|
|
|
|
- **Backup:** retrieve a registry server's files for backup storage |
|
|
|
|
- **Export:** pull the files so you can host them at another registry server |
|
|
|
|
|
|
|
|
|
## Example Usage: |
|
|
|
|
|
|
|
|
|
Specify the registry index either as a local path (`--index-path`)... |
|
|
|
|
|
|
|
|
|
```console |
|
|
|
|
$ git clone https://github.com/rust-lang/crates.io-index.git |
|
|
|
|
$ registry-backup \ |
|
|
|
|
--index-path crates.io-index \ |
|
|
|
|
--output-path crates.io-crate-files \ |
|
|
|
|
--requests-per-second 10 |
|
|
|
|
``` |
|
|
|
|
|
|
|
|
|
...or as an `--index-url` instead: |
|
|
|
|
|
|
|
|
|
```console |
|
|
|
|
$ registry-backup \ |
|
|
|
|
--index-url ssh://git@ssh.shipyard.rs/shipyard-rs/crate-index.git \ |
|
|
|
|
--output-path shipyard-rs-crate-files \ |
|
|
|
|
--requests-per-second 10 |
|
|
|
|
``` |
|
|
|
|
|
|
|
|
|
## Runtime Options |
|
|
|
|
|
|
|
|
|
```console |
|
|
|
|
$ ./target/release/registry-backup --help |
|
|
|
|
|
|
|
|
|
registry-backup 0.2.2 |
|
|
|
|
registry-backup 0.2.3 |
|
|
|
|
Jonathan Strong <jstrong@shipyard.rs> |
|
|
|
|
Download all .crate files from a registry server |
|
|
|
|
|
|
|
|
@ -32,7 +53,7 @@ OPTIONS:
|
|
|
|
|
Directory where downloaded .crate files will be saved to [default: output] |
|
|
|
|
|
|
|
|
|
-u, --user-agent <USER_AGENT> |
|
|
|
|
Value of user-agent HTTP header [default: registry-backup/v0.2.2] |
|
|
|
|
Value of user-agent HTTP header [default: registry-backup/v0.2.3] |
|
|
|
|
|
|
|
|
|
--requests-per-second <REQUESTS_PER_SECOND> |
|
|
|
|
Requests to registry server will not exceed this rate [default: 25] |
|
|
|
@ -116,7 +137,7 @@ The commands that mirror cargo commands (e.g. `just test`) are included for the
|
|
|
|
|
|
|
|
|
|
This file is generated using a template (`doc/README.tera.md`) rendered using updated outputs of the CLI menu, config sample, and other values. |
|
|
|
|
|
|
|
|
|
This version of `README.md` was generated at `Fri, 09 Sep 2022 02:45:35 +0000` based on git commit `67814b8a`. |
|
|
|
|
This version of `README.md` was generated at `Fri, 09 Sep 2022 02:55:22 +0000` based on git commit `1c087e79`. |
|
|
|
|
|
|
|
|
|
To (re-)generate the `README.md` file, use the justfile command: |
|
|
|
|
|
|
|
|
|