Files
party-mix-app/start.bat

12 lines
235 B
Batchfile
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
@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