24 lines
631 B
Batchfile
24 lines
631 B
Batchfile
@echo off
|
|
title MC Panel Launcher
|
|
echo ========================================
|
|
echo MC Panel - Launcher
|
|
echo ========================================
|
|
echo.
|
|
|
|
echo [1/2] Starting Backend...
|
|
start "MC Panel Backend" cmd /k "cd backend && python main.py"
|
|
timeout /t 3 /nobreak >nul
|
|
|
|
echo [2/2] Starting Frontend...
|
|
start "MC Panel Frontend" cmd /k "cd frontend && npm run dev"
|
|
|
|
echo.
|
|
echo ========================================
|
|
echo Panel is starting...
|
|
echo Backend: http://localhost:8000
|
|
echo Frontend: http://localhost:3000
|
|
echo ========================================
|
|
echo.
|
|
echo Press any key to exit launcher...
|
|
pause >nul
|