Spaces:
Running
Running
File size: 593 Bytes
d58d97b |
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 |
@echo off
echo.
echo ========================================
echo ELYSIA CODE COMPANION v1.0
echo Your AI Dev Partner
echo ========================================
echo.
echo Opening app in your default browser...
echo.
REM Start Python HTTP server on port 8080
start "" python -m http.server 8080
REM Pause 2 seconds to allow server to start
timeout /t 2 >nul
REM Open homepage in default browser
start "" http://localhost:8080/index.html
echo.
echo App opened! Configure your API key in Settings.
echo.
echo Press any key to close this window...
pause > nul
|