Initial commit

This commit is contained in:
2026-01-14 20:23:10 +06:00
commit 954dd473d1
57 changed files with 8854 additions and 0 deletions

23
START_PANEL.bat Normal file
View File

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