675e0c1383
* copy over the webui move web_ui to http remove web ui files, add .gitkeep updates, messing with gitkeep and ignoring web_ui update ui scripts gitkeep ignore http/web_ui Remove debugging remove the jwt reference, that was from something else restore old jwt plugin move things around Revert "move things around" This reverts commit 2a35121850f5b6b82064ecf78ebee5246601c04f. Update ui path handling to not need the web_ui name part add desc move the http.FS conversion internal to assetFS update gitignore remove bindata dep clean up some comments remove asset check script that's no longer needed Update readme remove more bindata things restore asset check update packagespec update stub stub the assetFS method and set uiBuiltIn to false for non-ui builds update packagespec to build ui * fail if assets aren't found * tidy up vendor * go mod tidy * updating .circleci * restore tools.go * re-re-re-run make packages * re-enable arm64 * Adding change log * Removing a file Co-authored-by: hamid ghaf <hamid@hashicorp.com>
32 lines
1.1 KiB
Go
32 lines
1.1 KiB
Go
// +build tools
|
|
|
|
// This file ensures tool dependencies are kept in sync. This is the
|
|
// recommended way of doing this according to
|
|
// https://github.com/golang/go/wiki/Modules#how-can-i-track-tool-dependencies-for-a-module
|
|
// To install the following tools at the version used by this repo run:
|
|
// $ make bootstrap
|
|
// or
|
|
// $ go generate -tags tools tools/tools.go
|
|
|
|
package tools
|
|
|
|
// use this instead of google.golang.org/protobuf/cmd/protoc-gen-go since this supports grpc plugin while the other does not.
|
|
// see https://github.com/golang/protobuf/releases#v1.4-generated-code and
|
|
// https://github.com/protocolbuffers/protobuf-go/releases/tag/v1.20.0#v1.20-grpc-support
|
|
//go:generate go install github.com/golang/protobuf/protoc-gen-go
|
|
//go:generate go install golang.org/x/tools/cmd/goimports
|
|
//go:generate go install github.com/mitchellh/gox
|
|
//go:generate go install github.com/client9/misspell/cmd/misspell
|
|
//go:generate go install mvdan.cc/gofumpt
|
|
import (
|
|
_ "github.com/golang/protobuf/protoc-gen-go"
|
|
|
|
_ "golang.org/x/tools/cmd/goimports"
|
|
|
|
_ "github.com/mitchellh/gox"
|
|
|
|
_ "github.com/client9/misspell/cmd/misspell"
|
|
|
|
_ "mvdan.cc/gofumpt"
|
|
)
|