You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
772 B
25 lines
772 B
@echo off
|
|
title Radar and Video Visualizer - Server
|
|
color 0B
|
|
|
|
cls
|
|
echo.
|
|
echo ======================================================
|
|
echo Radar and Video Visualizer - Local Server
|
|
echo ======================================================
|
|
echo.
|
|
echo - This window is your local web server.
|
|
echo - Please KEEP THIS WINDOW OPEN while using the app.
|
|
echo - To stop the server, simply close this window.
|
|
echo.
|
|
echo ======================================================
|
|
echo.
|
|
|
|
echo Launching the application in your default browser...
|
|
start http://127.0.0.1:8000/index.html
|
|
|
|
echo Server is now running on http://127.0.0.1:8000
|
|
echo Press CTRL+C at any time to stop the server.
|
|
|
|
:: Run the server command directly. We know 'python' works from our test.
|
|
python server.py
|