Fix node starting in entrypoint and remove release from electron build

This commit is contained in:
LukeGus
2025-09-10 21:34:41 -05:00
parent 67de30fc49
commit 1c06a36377
2 changed files with 2 additions and 38 deletions

View File

@@ -19,9 +19,9 @@ cd /app
export NODE_ENV=production
if command -v su-exec > /dev/null 2>&1; then
su-exec node node dist/backend/starter.js
su-exec node node dist/backend/backend/starter.js
else
su -s /bin/sh node -c "node dist/backend/starter.js"
su -s /bin/sh node -c "node dist/backend/backend/starter.js"
fi
echo "All services started"