You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+8-8Lines changed: 8 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -15,7 +15,7 @@ Hound is an extremely fast source code search engine. The core is based on this
15
15
1. Use the Go tools to install Hound. The binaries `houndd` (server) and `hound` (cli) will be installed in your $GOPATH.
16
16
17
17
```
18
-
go get github.com/etsy/hound/cmds/...
18
+
go get github.com/gitgrep-com/hound/cmds/...
19
19
```
20
20
21
21
2. Create a [config.json](config-example.json) in a directory with your list of repositories.
@@ -32,9 +32,9 @@ go get github.com/etsy/hound/cmds/...
32
32
33
33
1. Create a [config.json](config-example.json) in a directory with your list of repositories.
34
34
35
-
2. Run
35
+
2. Run
36
36
```
37
-
docker run -d -p 6080:6080 --name hound -v $(pwd):/data etsy/hound
37
+
docker run -d -p 6080:6080 --name hound -v $(pwd):/data gitgrep-com/hound
38
38
```
39
39
40
40
You should be able to navigate to [http://localhost:6080/](http://localhost:6080/) as usual.
@@ -59,7 +59,7 @@ Yup, that's it. You can proxy requests to the Go service through Apache/nginx/et
59
59
60
60
Currently Hound is only tested on MacOS and CentOS, but it should work on any *nix system. Hound on Windows is not supported but we've heard it compiles and runs just fine.
61
61
62
-
Hound supports the following version control systems:
62
+
Hound supports the following version control systems:
63
63
64
64
* Git - This is the default
65
65
* Mercurial - use `"vcs" : "hg"` in the config
@@ -74,12 +74,12 @@ There are a couple of ways to get Hound to index private repositories:
74
74
75
75
* Use the `file://` protocol. This allows you to index a local clone of a repository. The downside here is that the polling to keep the repo up to date will
76
76
not work. (This also doesn't work on local folders that are not of a supported repository type.)
77
-
* Use SSH style URLs in the config: `"url" : "[email protected]:foo/bar.git"`. As long as you have your
77
+
* Use SSH style URLs in the config: `"url" : "[email protected]:foo/bar.git"`. As long as you have your
78
78
[SSH keys](https://help.github.com/articles/generating-ssh-keys/) set up on the box where Hound is running this will work.
79
79
80
80
## Keeping Repos Updated
81
81
82
-
By default Hound polls the URL in the config for updates every 30 seconds. You can override this value by setting the `ms-between-poll` key on a per repo basis in the config. If you are indexing a large number of repositories, you may also be interested in tweaking the `max-concurrent-indexers` property. You can see how these work in the [example config](config-example.json).
82
+
By default Hound polls the URL in the config for updates every 30 seconds. You can override this value by setting the `ms-between-poll` key on a per repo basis in the config. If you are indexing a large number of repositories, you may also be interested in tweaking the `max-concurrent-indexers` property. You can see how these work in the [example config](config-example.json).
83
83
84
84
## Editor Integration
85
85
@@ -103,8 +103,8 @@ Go tools work accordingly. See [Setting GOPATH](https://github.com/golang/go/wik
103
103
up your Go workspace. With a `GOPATH` set, the following commands will build hound locally.
0 commit comments