Skip to content
Snippets Groups Projects

Initial implementation of an elasticsearch indexer in Go

Merged Nick Thomas requested to merge 1-initial-implementation into master
All threads resolved!
1 file
+ 23
0
Compare changes
  • Side-by-side
  • Inline
README.md 0 → 100644
+ 23
0
# GitLab Elasticsearch Indexer
This project indexes Git repositories into Elasticsearch for GitLab. See the
[homepage](https://gitlab.com/gitlab-org/es-git-go) for more information.
## Building
This project relies on [ICU](http://site.icu-project.org/) for text encoding;
ensure the development packages for your platform are installed before running
`make`:
### Debian / Ubuntu
```
# apt install libicu-dev
```
### Mac OSX
```
$ brew install icu4c
$ export PKG_CONFIG_PATH="/usr/local/opt/icu4c/lib/pkgconfig:$PKG_CONFIG_PATH"
```
Loading