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_library", "go_test") 2 3go_library( 4 name = "web", 5 srcs = [ 6 "api.go", 7 "server.go", 8 "snippets.go", 9 "templates.go", 10 "trace.go", 11 ], 12 importpath = "github.com/sourcegraph/zoekt/web", 13 visibility = ["//visibility:public"], 14 deps = [ 15 "//:zoekt", 16 "//json", 17 "//query", 18 "//rpc", 19 "//stream", 20 "//trace", 21 "@com_github_grafana_regexp//:regexp", 22 "@com_github_opentracing_opentracing_go//:opentracing-go", 23 ], 24) 25 26go_test( 27 name = "web_test", 28 srcs = ["e2e_test.go"], 29 embed = [":web"], 30 deps = [ 31 "//:zoekt", 32 "//query", 33 "@com_github_google_go_cmp//cmp", 34 ], 35)