Initial commit - Church Music Database

This commit is contained in:
2026-01-27 18:04:50 -06:00
commit d367261867
336 changed files with 103545 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
@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