-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstart-dev.bat
More file actions
41 lines (36 loc) · 1.47 KB
/
start-dev.bat
File metadata and controls
41 lines (36 loc) · 1.47 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
@echo off
REM ============================================================================
REM Video Editor - Development Environment Launcher
REM ============================================================================
REM This script starts both the backend and frontend servers in separate windows
REM Run this from the project root directory
REM ============================================================================
echo.
echo ============================================================================
echo VIDEO EDITOR - DEVELOPMENT ENVIRONMENT LAUNCHER
echo ============================================================================
echo.
echo Starting backend and frontend servers in separate windows...
echo.
echo Backend: http://localhost:8000
echo Frontend: http://localhost:5173
echo.
echo Close each window to stop the respective server
echo ============================================================================
echo.
REM Start backend in a new window
start "Video Editor - Backend" cmd /k "cd src\backend && start.bat"
REM Wait a moment before starting frontend
timeout /t 2 /nobreak >nul
REM Start frontend in a new window
start "Video Editor - Frontend" cmd /k "cd src\frontend && start.bat"
echo.
echo Both servers are starting in separate windows!
echo.
echo - Backend window: "Video Editor - Backend"
echo - Frontend window: "Video Editor - Frontend"
echo.
echo Once both servers are running, open your browser to:
echo http://localhost:5173
echo.
pause