Skip to content

Commit 4348a3d

Browse files
committed
fix: correct port number in installer (7655 not 3000)
The server is hardcoded to use port 7655, not 3000
1 parent bc612ae commit 4348a3d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

scripts/install-pulse.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -319,7 +319,7 @@ configure_environment() {
319319
if [ ! -f "$env_file" ]; then
320320
cat > "$env_file" << EOF
321321
NODE_ENV=production
322-
PORT=3000
322+
PORT=7655
323323
EOF
324324
chown "$PULSE_USER:$PULSE_USER" "$env_file"
325325
chmod 600 "$env_file"
@@ -346,7 +346,7 @@ StandardOutput=journal
346346
StandardError=journal
347347
SyslogIdentifier=pulse-monitor
348348
Environment="NODE_ENV=production"
349-
Environment="PORT=3000"
349+
Environment="PORT=7655"
350350
351351
[Install]
352352
WantedBy=multi-user.target
@@ -548,7 +548,7 @@ show_final_instructions() {
548548
local ip=$(hostname -I | awk '{print $1}')
549549
echo ""
550550
echo "━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━"
551-
echo -e "Access Pulse: \033[1;36mhttp://${ip}:3000\033[0m"
551+
echo -e "Access Pulse: \033[1;36mhttp://${ip}:7655\033[0m"
552552
echo ""
553553
echo "Useful commands:"
554554
echo " • systemctl status $SERVICE_NAME"

0 commit comments

Comments
 (0)