55 lines
2.1 KiB
Markdown
55 lines
2.1 KiB
Markdown
---
|
|
title: Algolia
|
|
---
|
|
|
|
# Algolia for Search
|
|
|
|
Algolia is a third party service which powers the search. When working with the API it is very likely that you will need to utilize Algolia. You will need to sign up for a free-tier account, retrieve the keys and provide those keys to the Rails application.
|
|
|
|
## Sign up
|
|
|
|
1. Go to the Algolia sign up [page](https://www.algolia.com/apps/AJVD3Q9KL3/dashboard).
|
|
|
|
2. Choose one of the three methods of signing up: email, github or google.
|
|
|
|
3. Fill in your information.
|
|
|
|

|
|
|
|
4. Select the datacenter's region.
|
|
|
|

|
|
|
|
5. Fill in or skip the project information.
|
|
|
|

|
|
|
|
6. You are all set up now! You can go to your dashboard.
|
|
|
|

|
|
|
|
7. You can skip the tutorial, we will guide you through the process. Accept the [Terms and Conditions](https://www.algolia.com/policies/terms).
|
|
|
|

|
|
|
|
8. All good! You can get your API keys now.
|
|
|
|
## Get API keys
|
|
|
|
1. [Sign up](#algolia-sign-up) or [Sign in](https://www.algolia.com/users/sign_in) to your Algolia account.
|
|
|
|
2. From your **Dashboard**, click on **API Keys**.
|
|
|
|

|
|
|
|
3. Change your keys accordingly (name of Algolia key -> name of our `ENV` variable):
|
|
|
|
```text
|
|
Application ID -> ALGOLIASEARCH_APPLICATION_ID
|
|
Search-Only API Key -> ALGOLIASEARCH_SEARCH_ONLY_KEY
|
|
Admin API KEY -> ALGOLIASEARCH_API_KEY
|
|
```
|
|
|
|

|
|
|
|
4. Done.
|