fork of https://github.com/sourcegraph/zoekt
0

Configure Feed

Select the types of activity you want to include in your feed.

1load("@io_bazel_rules_go//go:def.bzl", "go_binary", "go_library", "go_test") 2 3go_library( 4 name = "zoekt-dynamic-indexserver_lib", 5 srcs = ["main.go"], 6 importpath = "github.com/sourcegraph/zoekt/cmd/zoekt-dynamic-indexserver", 7 visibility = ["//visibility:private"], 8 deps = [ 9 "@com_github_prometheus_client_golang//prometheus", 10 "@com_github_prometheus_client_golang//prometheus/collectors", 11 "@com_github_prometheus_client_golang//prometheus/promauto", 12 "@com_github_prometheus_client_golang//prometheus/promhttp", 13 ], 14) 15 16go_binary( 17 name = "zoekt-dynamic-indexserver", 18 embed = [":zoekt-dynamic-indexserver_lib"], 19 visibility = ["//visibility:public"], 20) 21 22go_test( 23 name = "zoekt-dynamic-indexserver_test", 24 srcs = ["main_test.go"], 25 embed = [":zoekt-dynamic-indexserver_lib"], 26)