Merge pull request #291 from ronivay/feat/disable-default-v6-build

feat: disable building XO 6 by default and add config option
This commit is contained in:
Roni Väyrynen
2025-04-02 10:00:15 +03:00
committed by GitHub
2 changed files with 6 additions and 1 deletions

View File

@@ -138,3 +138,8 @@ PRESERVE="3"
# Configurable network-timeout setting for yarn, in ms.
# default: 300000 = 300sec
#YARN_NETWORK_TIMEOUT="300000"
# Enable/Disable XO 6 UI build, accessible at /v6
# This is actively developed and enabling it might break install/update
# default: false
#INCLUDE_V6="false"

View File

@@ -27,7 +27,7 @@ LISTEN_ADDRESS=${LISTEN_ADDRESS:-""}
PROXY_PORT=${PROXY_PORT:-443}
INSTALLDIR=${INSTALLDIR:-"/opt/xo"}
BRANCH=${BRANCH:-"master"}
INCLUDE_V6=${INCLUDE_V6:-"true"}
INCLUDE_V6=${INCLUDE_V6:-"false"}
LOGPATH=${LOGPATH:-$(dirname "$(realpath "$0")")/logs}
AUTOUPDATE=${AUTOUPDATE:-"true"}
PRESERVE=${PRESERVE:-"3"}