Full Mattermost server source with integrated Community Enterprise features. Includes vendor directory for offline/air-gapped builds. Structure: - enterprise-impl/: Enterprise feature implementations - enterprise-community/: Init files that register implementations - enterprise/: Bridge imports (community_imports.go) - vendor/: All dependencies for offline builds Build (online): go build ./cmd/mattermost Build (offline/air-gapped): go build -mod=vendor ./cmd/mattermost 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
31 lines
760 B
Makefile
31 lines
760 B
Makefile
.DEFAULT_GOAL = all
|
|
|
|
name := uarand
|
|
package := github.com/corpix/$(name)
|
|
|
|
.PHONY: all
|
|
all:: useragents.go
|
|
|
|
.PHONY: test
|
|
test:
|
|
go test -v ./...
|
|
|
|
.PHONY: lint
|
|
lint:
|
|
.PHONY: lint
|
|
lint:
|
|
golangci-lint --color=always \
|
|
--exclude='uses unkeyed fields' \
|
|
--exclude='type .* is unused' \
|
|
--exclude='should merge variable declaration with assignment on next line' \
|
|
--deadline=120s \
|
|
run ./...
|
|
|
|
.PHONY: check
|
|
check: lint test
|
|
|
|
.PHONY: useragents.go
|
|
useragents.go:
|
|
./scripts/fetch-user-agents | ./scripts/generate-useragents-go $(name) > $@
|
|
go fmt $@
|