File size: 867 Bytes
0b194e5
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
@echo off

REM Elysia Markdown Studio - Quick Launcher

REM Opens index.html in default browser

echo.
echo ====================================
echo   Elysia Markdown Studio v1.0
echo   Your AI-Powered Writing Partner
echo ====================================
echo.
echo Opening Elysia Markdown Studio...
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 launched in your default browser!
echo.
echo Tips:
echo - Configure API key in Settings for AI features
echo - Use Ctrl+S to save documents
echo - Use toolbar for quick formatting
echo - Try AI tools (merge, summarize, improve!)
echo.
echo Enjoy writing with Elysia! 💎
echo.
pause