Initial commit: party-mix-app with prefetch cache, audio preload optimizations

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-04-25 12:40:22 +03:00
commit 0097fb5183
83 changed files with 11788 additions and 0 deletions

11
start.bat Normal file
View File

@@ -0,0 +1,11 @@
@echo off
echo Запуск Party Mix...
where node >nul 2>nul
IF %ERRORLEVEL% NEQ 0 (
echo Node.js не найден. Скачайте с https://nodejs.org
pause
exit
)
start "" http://localhost:3000
node server.js
pause