Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2022-06-28 00:08:29 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2022-06-28 00:08:29 +0300
commit441dc12073755df98808a37512062451fa184964 (patch)
treece512a2c212c5857eeb4a7ffe82392ef48746292 /doc/integration/advanced_search
parent3e1f93c033ed7744696f7763716b51ab5acda17a (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'doc/integration/advanced_search')
-rw-r--r--doc/integration/advanced_search/elasticsearch.md10
1 files changed, 6 insertions, 4 deletions
diff --git a/doc/integration/advanced_search/elasticsearch.md b/doc/integration/advanced_search/elasticsearch.md
index c123611fa44..844cd71b974 100644
--- a/doc/integration/advanced_search/elasticsearch.md
+++ b/doc/integration/advanced_search/elasticsearch.md
@@ -95,11 +95,13 @@ The former Ruby-based indexer was removed in [GitLab 12.3](https://gitlab.com/gi
First, we need to install some dependencies, then we build and install
the indexer itself.
+#### Install dependencies
+
This project relies on [International Components for Unicode](https://icu.unicode.org/) (ICU) for text encoding,
therefore we must ensure the development packages for your platform are
installed before running `make`.
-#### Debian / Ubuntu
+##### Debian / Ubuntu
To install on Debian or Ubuntu, run:
@@ -107,7 +109,7 @@ To install on Debian or Ubuntu, run:
sudo apt install libicu-dev
```
-#### CentOS / RHEL
+##### CentOS / RHEL
To install on CentOS or RHEL, run:
@@ -115,7 +117,7 @@ To install on CentOS or RHEL, run:
sudo yum install libicu-devel
```
-#### macOS
+##### macOS
NOTE:
You must first [install Homebrew](https://brew.sh/).
@@ -127,7 +129,7 @@ brew install icu4c
export PKG_CONFIG_PATH="/usr/local/opt/icu4c/lib/pkgconfig:$PKG_CONFIG_PATH"
```
-### Build and install
+#### Build and install
To build and install the indexer, run: