mirror of
https://github.com/grafana/grafana.git
synced 2025-12-18 22:16:21 -05:00
* initial generation * went through doc to add new resource * added dummy kind so grafana will run * added dummy handler and custom route * fix app name * gets custom route working - still a dummy route * adds groupOverride to manifest * adds quotas to grpc client and server * WIP - trying to get api recognized - not working * Gets route working * fixes group and resource vars * expects group and resource as separate params * set content-type header on response * removes Quotas kind and regens * Update grafana-app-sdk to v0.48.5 * Update codegen * updates manifest * formatting * updates grafana-app-sdk version to 0.48.5 * regen ResourceClient mocks * adds tests * remove commented code * uncomment go mod tidy * fix tests and make update workspace * adds quotas app to codeowners * formatting * make gen-apps * deletes temp file * fix generated folder code * make gofmt * make gen-go * make update-workspace * add COPY apps/quotas to Dockerfile * fix test mock * fixes undefined NewFolderStatus() * make gen-apps, and add func for NewFolderStatus * make gen-apps again * make update-workspace * regen folder_object_gen.go * gofmt * fix linting * apps/folder make update-workspace * make gen-apps * make gen-apps * fixes enterprise_imports.go * go get testcontainers * adds feature toggle * make update-workspace * fix go mod * fix another client mock --------- Co-authored-by: Steve Simpson <steve@grafana.com>
43 lines
1.1 KiB
Text
43 lines
1.1 KiB
Text
go 1.25.5
|
|
|
|
// The `skip:golangci-lint` comment tag is used to exclude the package from the `golangci-lint` GitHub Action.
|
|
// The module at the root of the repo (`.`) is excluded because ./pkg/... is included manually in the `golangci-lint` configuration.
|
|
|
|
use (
|
|
. // skip:golangci-lint
|
|
./apps/advisor
|
|
./apps/alerting/alertenrichment
|
|
./apps/alerting/historian
|
|
./apps/alerting/notifications
|
|
./apps/alerting/rules
|
|
./apps/annotation
|
|
./apps/collections
|
|
./apps/correlations
|
|
./apps/dashboard
|
|
./apps/example
|
|
./apps/folder
|
|
./apps/iam
|
|
./apps/investigations
|
|
./apps/logsdrilldown
|
|
./apps/playlist
|
|
./apps/plugins
|
|
./apps/preferences
|
|
./apps/provisioning
|
|
./apps/quotas
|
|
./apps/scope
|
|
./apps/secret
|
|
./apps/shorturl
|
|
./pkg/aggregator
|
|
./pkg/apimachinery
|
|
./pkg/apiserver
|
|
./pkg/build
|
|
./pkg/build/wire // skip:golangci-lint
|
|
./pkg/codegen
|
|
./pkg/plugins/codegen
|
|
./pkg/promlib
|
|
./pkg/semconv
|
|
)
|
|
|
|
replace github.com/prometheus/alertmanager => github.com/grafana/prometheus-alertmanager v0.25.1-0.20250911094103-5456b6e45604
|
|
|
|
replace github.com/crewjam/saml => github.com/grafana/saml v0.4.15-0.20240917091248-ae3bbdad8a56
|