mirror of
https://github.com/grafana/grafana.git
synced 2026-02-03 20:49:50 -05:00
* [API Server] Add Example App for reference use. * Remove Printlns. * Upgrade app-sdk to v0.46.0, update apps to handle breaking changes. * Only start the reconciler for the example app if the v1alpha1 API version is enabled. * Some comment doc updates. * Run make update-workspace * Set codeowner for /apps/example * Run make gofmt and make update-workspace * Run prettier on apps/example/README.md * Add COPY apps/example to Dockerfile * Add an authorizer to the example app. * Fix import ordering. * Update apps/example/kinds/manifest.cue Co-authored-by: Owen Diehl <ow.diehl@gmail.com> * Run make update-workspace * Re-run make gen-go for enterprise import updates * Run make update-workspace --------- Co-authored-by: Owen Diehl <ow.diehl@gmail.com>
39 lines
1 KiB
Text
39 lines
1 KiB
Text
go 1.25.3
|
|
|
|
// 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/notifications
|
|
./apps/alerting/rules
|
|
./apps/correlations
|
|
./apps/dashboard
|
|
./apps/example
|
|
./apps/folder
|
|
./apps/iam
|
|
./apps/investigations
|
|
./apps/logsdrilldown
|
|
./apps/playlist
|
|
./apps/plugins
|
|
./apps/preferences
|
|
./apps/provisioning
|
|
./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
|