Expanded README.

This commit is contained in:
DebaucheryLibrarian 2020-10-25 01:29:25 +02:00
parent 7e3e0d8f30
commit 57a44d6643
2 changed files with 6 additions and 7 deletions

View File

@ -86,9 +86,12 @@ To generate thumbnails for new logos and tag photos, install ImageMagick and run
#### Developers
* `--no-save`: Do not store retrieved information in local database, forcing re-fetch.
* `--level`: Change log level to `silly`, `verbose`, `info`, `warn` or `error`.
* `--flush-network`: Delete all scenes and movies from all network channels
* `--flush-channel`: Delete all scenes and movies from a channel
* `--flush-batch`: Delete all scenes and movies from a batch ID
* `--delete-scenes`: Delete scenes and assets by ID.
* `--delete-movies`: Delete movies and assets by ID.
* `--flush-network`: Delete all scenes and movies with assets from all network channels
* `--flush-channel`: Delete all scenes and movies with assets from a channel
* `--flush-batch`: Delete all scenes and movies with assets from a batch ID
* `--flush-media`: Delete temporary media directory and all unassociated media entries and files
### API
A GraphQL API is available at `/graphql`, and a REST API is available at the following `GET` endpoints:

View File

@ -41,10 +41,6 @@ async function init() {
await deleteMovies(argv.deleteMovies);
}
if (argv.delete) {
await deleteScenes(argv.delete);
}
if (argv.flushOrphanedMedia) {
await flushOrphanedMedia();
}