1
0
Fork 0

Update README.md

This commit is contained in:
lightling 2024-02-10 15:08:03 -05:00
parent 3933505fc6
commit 4abf2ef021

View file

@ -43,7 +43,7 @@ Max number of concurrent download threads. Only this number of concurrent galler
### `--args={gallery-dl args}`
Additional args to pass to gallery-dl. Note that these aren't currently checked for duplicates that may be used by this repo.
Additional args to pass to gallery-dl. See [gallery-dl CLI options](https://github.com/mikf/gallery-dl/blob/master/docs/options.md#selection-options) for reference. Note that these aren't currently checked for duplicates that may be used by this repo.
## TODO
@ -58,12 +58,21 @@ Args:
### `run-updateDb.js`
Should pull from the user database and update the archive without doing a full download.
Should pull from the user database and update the archive without doing a full download. The DB should save with a lastUpdated field. This should be used as a date for the `/search` API. Preferred if it's been a long time since an update has happened for a user and/or the user has uploaded a significant amount of media since lastUpdated.
Note: if you've updated the DB recently, it may be more performant to run `node run-downloadDb.js` with `--args="-A {#}"` to simply run the `/media` check instead of the `/search` check, where `-A` will abort the user after `{#}` tries.
Args:
- `--path={/path/to/your/archive}`
- `--mode={search|media}`
- `search`: The DB should save with a lastUpdated field. This should be used as a date for the /search API. Preferred if it's been a long time since an update has happened for a user and/or the user has uploaded a significant amount of media since lastUpdated.
- `media`: This should run /media and stop after hitting skipped files, as skipped files indicate hitting lastUpdated. Preferred in normal circumstances.
- `--threads={#}`
- `--args={gallery-dl args}`
### `run-renameUser.js`
Should rename an existing user in the db, optionally renaming their existing archive and its contents if `--full=true`.
Args:
- `--from={'username'}`
- `--to={'username'}`
- `--full={true|false}`
- `--path={/path/to/your/archive}`
- `--args={gallery-dl args}`