Spaces:
Running
Running
File size: 255 Bytes
3d50167 |
1 2 3 4 5 6 7 8 9 |
@echo off
REM Starts a Python HTTP server on port 8080
start "" python -m http.server 8080
REM Pause 2 seconds to allow the server to start
timeout /t 2 >nul
REM Opens the homepage in the default browser
start "" http://localhost:8080/index.html |