This repository has been archived by the owner on Oct 24, 2023. It is now read-only.
forked from hound-search/hound
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config-example.json
69 lines (69 loc) · 2.24 KB
/
config-example.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"max-concurrent-indexers" : 2,
"dbpath" : "data",
"title" : "Hound",
"health-check-uri" : "/healthz",
"repos" : {
"SomeGitRepo" : {
"url" : "https://www.github.com/YourOrganization/RepoOne.git"
},
"AnotherGitRepo" : {
"url" : "https://www.github.com/YourOrganization/RepoOne.git",
"ms-between-poll": 10000,
"exclude-dot-files": true
},
"SomeMercurialRepo" : {
"url" : "https://www.example.com/foo/hg",
"vcs" : "hg"
},
"Subversion" : {
"url" : "http://my-svn.com/repo",
"url-pattern" : {
"base-url" : "{url}/{path}{anchor}"
},
"vcs" : "svn"
},
"SubversionWithCreds" : {
"url" : "http://my-private-svn.com/repo",
"url-pattern" : {
"base-url" : "{url}/{path}{anchor}"
},
"vcs" : "svn",
"vcs-config" : {
"username" : "username_for_ro_account",
"password" : "password_for_ro_account"
}
},
"LocalFolder" : {
"url" : "file:///absolute/path/to/directory"
},
"RepoWithCustomUrls" : {
"url" : "https://github.com/username/Foo.git",
"url-pattern" : {
"base-url" : "{url}/files/{path}{anchor}",
"anchor" : "#line={line}"
}
},
"BitbucketCustomUrl" : {
"url" : "[email protected]:organization/project.git",
"url-pattern" : {
"base-url" : "{url}/src/master/{path}{anchor}",
"anchor" : "#{filename}-{line}"
}
},
"RepoWithPollingDisabled" : {
"url" : "https://www.github.com/YourOrganization/RepoOne.git",
"enable-poll-updates" : false
},
"RepoWithPushingEnabled" : {
"url" : "https://www.github.com/YourOrganization/RepoOne.git",
"enable-push-updates" : true
},
"RepoIsGitHubWiki" : {
"url" : "https://github.com/YourOrganization/RepoWithWiki.wiki.git",
"url-pattern" : {
"base-url" : "{url}/{path}"
}
}
}
}