mirror of https://github.com/grafana/grafana.git
* WIP: copy approach * Fix package name * Do not ignore .keep for frontend extensions * Add keep file for frontend extensions * Tweak makefile to generate enterprise swagger or not * Remove duplicate imports * Add build extensions * Add CMD extensions * Add keep to e2e extensions * Add .keep * Reduce file structure changes * Ignore boring crypto * Add e2e extensions keep file * Remove enterprise file * Update .gitignore * Move things around * Update git ignore * Consolidate backend extensions folder * Move enterprise deps * Update comment * Do not use build tags * Ignore setting enterprise * Revert changes in makefile * Revert package changes * Add back extensions main.go * Update git ignore * Ignore spanner tests * Trick ignore files only by git * Add .ignore file to CODEOWNERS for frontend-ops * Fix issue with noisy duplicate targets |
||
---|---|---|
.. | ||
.gitignore | ||
README.md | ||
Variables.mk | ||
bra.mod | ||
bra.sum | ||
cog.mod | ||
cog.sum | ||
cue.mod | ||
cue.sum | ||
drone.mod | ||
drone.sum | ||
go.mod | ||
golangci-lint.mod | ||
golangci-lint.sum | ||
jb.mod | ||
jb.sum | ||
lefthook.mod | ||
lefthook.sum | ||
swagger.mod | ||
swagger.sum | ||
variables.env |
README.md
Project Development Dependencies.
This is directory which stores Go modules with pinned buildable package that is used within this repository, managed by https://github.com/bwplotka/bingo.
- Run
bingo get
to install all tools having each own module file in this directory. - Run
bingo get <tool>
to install that have own module file in this directory. - For Makefile: Make sure to put
include .bingo/Variables.mk
in your Makefile, then use $() variable where is the .bingo/.mod. - For shell: Run
source .bingo/variables.env
to source all environment variable for each tool. - For go: Import
.bingo/variables.go
to for variable names. - See https://github.com/bwplotka/bingo or -h on how to add, remove or change binaries dependencies.
Requirements
- Go 1.14+