From d05a9b2a2630236477379fa89d234d7b0ed453c8 Mon Sep 17 00:00:00 2001 From: Dongxu Wang Date: Sat, 2 Sep 2023 09:09:58 +0800 Subject: [PATCH] fix scheduler part for contributing --- CONTRIBUTING.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index bd4c5a083..799cc23e8 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -123,11 +123,11 @@ Locally, we do not receive any POM files, instead we use the `data / run init` t While running, the server executes some scheduled jobs periodically to update the information of the projects and to synchronize the search engine: Here are some examples of scheduled jobs: -- Github updater: Update information about the projects form Github. -- Project dependencies updater: Compute the dependencies of a project from the dependencies of its artifacts. -- Search synchronizer: Update the content of the Elasticsearch index. +- github-info: Update information about the projects form Github. +- project-dependencies: Compute the dependencies of a project from the dependencies of its artifacts. +- sync-search: Update the content of the Elasticsearch index. -Check out the [SchedulerService](https://github.com/scalacenter/scaladex/blob/main/modules/server/src/main/scala/scaladex/server/service/SchedulerService.scala) class to have a complete list of all the scheduled jobs. +Check out the [Job](https://github.com/scalacenter/scaladex/blob/main/modules/template/src/main/scala/scaladex/view/Job.scala) class to have a complete list of all the scheduled jobs. The main and search pages are computed with information coming from Elasticsearch. The project and artifact pages contain data from the SQL database.