mirror of
https://github.com/mattermost/mattermost.git
synced 2025-02-25 18:55:24 -06:00
- Update library version. - Added MaxFlush delay to help reduce CPU usage. - Fall back to LRU cache for the caches which use SCAN. - Added mattermost-redis and running for all api layer tests in Postgres. https://mattermost.atlassian.net/browse/MM-59934 ```release-note NONE ```
29 lines
825 B
Makefile
29 lines
825 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: mysql, postgres, minio, inbucket, openldap, dejavu,
|
|
# keycloak, elasticsearch, opensearch, redis, prometheus,
|
|
# grafana, loki and promtail.
|
|
#
|
|
# Must be space separated names.
|
|
#
|
|
# Example: mysql postgres elasticsearch
|
|
ENABLED_DOCKER_SERVICES ?= mysql postgres inbucket redis
|
|
|
|
# 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
|