Files

25 lines
685 B
Batchfile
Raw Permalink Normal View History

2026-01-27 18:04:50 -06:00
@echo off
REM Start Church Song Lyric Frontend
REM This script starts the React development server
echo ========================================
echo CHURCH APP - FRONTEND SERVER
echo ========================================
echo.
echo Starting React development server on port 3000...
echo Local Access: http://localhost:3000
echo LAN Access: http://192.168.10.178:3000
echo External Access: http://houseofprayer.ddns.net:3000
echo.
echo The browser will open automatically in a few seconds...
echo Press Ctrl+C to stop the server
echo ========================================
echo.
cd /d "%~dp0frontend"
REM Start React development server
npm start
pause