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>
29 lines
839 B
Makefile
29 lines
839 B
Makefile
# Do not modify this file, if you want to configure your own environment copy
|
|
# this file in config.override.mk and modify that file, or defining environment
|
|
# variables using the same names found here.
|
|
|
|
# Enable services to be run in docker.
|
|
#
|
|
# Possible options: postgres, minio, inbucket, openldap, dejavu,
|
|
# keycloak, elasticsearch, opensearch, redis, prometheus,
|
|
# grafana, loki and promtail.
|
|
#
|
|
# Must be space separated names.
|
|
#
|
|
# Example: postgres elasticsearch
|
|
ENABLED_DOCKER_SERVICES ?= postgres inbucket redis prometheus grafana loki promtail
|
|
|
|
# Disable entirely the use of docker
|
|
MM_NO_DOCKER ?= false
|
|
|
|
# Run the server in the background
|
|
RUN_SERVER_IN_BACKGROUND ?= true
|
|
|
|
# Data loaded by default in openldap when container starts.
|
|
#
|
|
# Possible options: test or qa
|
|
LDAP_DATA ?= test
|
|
|
|
# Mock the CWS.
|
|
MM_ENABLE_CWS_MOCK ?= false
|