This commit is contained in:
CanbiZ 2025-11-12 15:18:19 +01:00
commit 22813898e4

View File

@ -22,7 +22,8 @@ fetch_and_deploy_gh_release "domain-locker" "Lissy93/domain-locker"
msg_info "Building Domain-Locker"
cd /opt/domain-locker
npm install --legacy-peer-deps
export NODE_OPTIONS="--max-old-space-size=6144"
export NODE_OPTIONS="--max-old-space-size=8192"
HOST_IP=$(hostname -I | awk '{print $1}')
cat <<EOF >/opt/domain-locker.env
# Database connection
DL_PG_HOST=localhost
@ -31,6 +32,8 @@ DL_PG_USER=$PG_DB_USER
DL_PG_PASSWORD=$PG_DB_PASS
DL_PG_NAME=$PG_DB_NAME
DL_API_BASE_URL=http://${HOST_IP}:3000
# Build + Runtime
DL_ENV_TYPE=selfHosted
NITRO_PRESET=node_server