mirror of
https://github.com/sourcegraph/sourcegraph.git
synced 2026-02-06 18:51:59 +00:00
This uses the same pattern we use for docsite and jaeger. This avoids including all the dependencies of caddy as well as avoiding the need to build it.
32 lines
875 B
Go
32 lines
875 B
Go
// +build tools
|
|
|
|
package main
|
|
|
|
import (
|
|
// dev/go-install.sh has debug support
|
|
_ "github.com/go-delve/delve/cmd/dlv"
|
|
|
|
// dev/check/go-lint.sh
|
|
_ "github.com/golangci/golangci-lint/cmd/golangci-lint"
|
|
|
|
// zoekt-* used in sourcegraph/server docker image build
|
|
_ "github.com/google/zoekt/cmd/zoekt-archive-index"
|
|
_ "github.com/google/zoekt/cmd/zoekt-sourcegraph-indexserver"
|
|
_ "github.com/google/zoekt/cmd/zoekt-webserver"
|
|
|
|
// go-bindata is used in lots of our gen.go files
|
|
_ "github.com/kevinburke/go-bindata/go-bindata"
|
|
|
|
// goreman is used by our local dev environment
|
|
_ "github.com/mattn/goreman"
|
|
|
|
// vfsgendev is used for packing static assets into .go files.
|
|
_ "github.com/shurcooL/vfsgen/cmd/vfsgendev"
|
|
|
|
// used in schema pkg
|
|
_ "github.com/sourcegraph/go-jsonschema/cmd/go-jsonschema-compiler"
|
|
|
|
// used in many places
|
|
_ "golang.org/x/tools/cmd/stringer"
|
|
)
|