-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #349 from sul-dlss/348-update-sidekiq
Update Sidekiq to version 7
- Loading branch information
Showing
5 changed files
with
25 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
web: unset PORT && bin/rails server | ||
css: yarn build:css --watch | ||
worker: bundle exec sidekiq |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,17 +12,20 @@ The relevancy dashboard provides a way to visualize document ranking and relevan | |
|
||
1. Ruby 3.1 | ||
2. [bundler](http://bundler.io/) gem | ||
3. [Redis](https://redis.io/) | ||
|
||
## Installation | ||
|
||
Clone the repository | ||
|
||
$ git clone [email protected]:sul-dlss/relevancy_dashboard.git | ||
|
||
Move into the app and install dependencies | ||
Move into the app, install dependencies, and initialize the database | ||
|
||
$ cd relevancy_dashboard | ||
$ bundle install | ||
$ yarn install | ||
$ rails db:migrate | ||
|
||
Start the development server | ||
|
||
|
@@ -49,6 +52,6 @@ The RuboCop style enforcement can be run without running the tests | |
## Adding endpoints and searches | ||
|
||
Endpoints can be added from the application (`/endpoints/new`). It should point at | ||
the query endpoint (often `/select`) for a solr core/collection. | ||
the query endpoint (often `/select`) for a solr core/collection. It is recommended to add at least two endpoints. | ||
|
||
Then, different search cases can be added. The query parameters are raw URL parameters (of the form `q=xyz&sort=score+asc`). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters