diff --git a/app/Console/Commands/Indexer/IncrementalIndexer.php b/app/Console/Commands/Indexer/IncrementalIndexer.php index 8e09ecf..0ec05d4 100644 --- a/app/Console/Commands/Indexer/IncrementalIndexer.php +++ b/app/Console/Commands/Indexer/IncrementalIndexer.php @@ -26,7 +26,7 @@ class IncrementalIndexer extends Command protected function promptForMissingArgumentsUsing(): array { return [ - 'mediaType' => ['The media type to index.', 'Valid values: anime, manga, character, people'] + 'mediaType' => ['The media type to index.', 'Valid values: anime, manga, characters, people'] ]; } @@ -123,7 +123,7 @@ class IncrementalIndexer extends Command $id = $ids[$index]; - $url = env('APP_URL') . "/v4/anime/$id"; + $url = env('APP_URL') . "/v4/$mediaType/$id"; $this->info("Indexing/Updating " . ($i + 1) . "/$idCount $url [MAL ID: $id]"); try @@ -171,7 +171,7 @@ class IncrementalIndexer extends Command 'failed' => $this->option('failed') ?? false ], [ - 'mediaType' => 'required|in:anime,manga,character,people', + 'mediaType' => 'required|in:anime,manga,characters,people', 'delay' => 'integer|min:1', 'resume' => 'bool|prohibited_with:failed', 'failed' => 'bool|prohibited_with:resume' diff --git a/container-setup.sh b/container-setup.sh index dd56f6e..f47c076 100755 --- a/container-setup.sh +++ b/container-setup.sh @@ -34,7 +34,7 @@ display_help() { echo "stop Stop Jikan API" echo "validate-prereqs Validate pre-reqs installed (docker, docker-compose)" echo "execute-indexers Execute the indexers, which will scrape and index data from MAL. (Notice: This can take days)" - echo "index-incrementally Executes the incremental indexers for each media type. (anime, manga, character, people)" + echo "index-incrementally Executes the incremental indexers for each media type. (anime, manga, characters, people)" echo "" } diff --git a/container_usage.md b/container_usage.md index a9cbb5b..8de9b8d 100644 --- a/container_usage.md +++ b/container_usage.md @@ -39,7 +39,7 @@ start Start Jikan API (mongodb, typesense, redis, jikan-api wor stop Stop Jikan API validate-prereqs Validate pre-reqs installed (docker, docker-compose) execute-indexers Execute the indexers, which will scrape and index data from MAL. (Notice: This can take days) -index-incrementally Executes the incremental indexers for each media type. (anime, manga, character, people) +index-incrementally Executes the incremental indexers for each media type. (anime, manga, characters, people) ``` ### Running the indexer with the script