23 lines
632 B
Bash
23 lines
632 B
Bash
# Service settings specific to this server
|
|
# (can also override anything in the template_info.env file in the template to make it specific to this server)
|
|
CONTAINER_NAME=languagetool
|
|
IMAGE_TAG="latest"
|
|
|
|
# Server Settings
|
|
SSH_USER="root"
|
|
|
|
# LanguageTool Settings
|
|
HTTP_PORT=8010
|
|
|
|
# Java heap size settings
|
|
JAVA_XMS=256m
|
|
JAVA_XMX=512m
|
|
|
|
# Enable n-gram data for improved error detection (optional)
|
|
# Mount n-gram datasets to the DATA_VOLUME for better results
|
|
# Download from: https://languagetool.org/download/ngram-data/
|
|
ENABLE_NGRAMS=false
|
|
|
|
# Pipeline prewarming for faster first request (optional)
|
|
LANGTOOL_PIPELINEPREWARMING=false
|