9 lines
213 B
Batchfile
9 lines
213 B
Batchfile
@echo off
|
|
set PYTHONUTF8=1
|
|
cd /d "%~dp0"
|
|
echo Starting TianXuan...
|
|
start /B runtime\python\python.exe manage.py runserver 127.0.0.1:8000 --noreload
|
|
timeout /t 3 >nul
|
|
start http://127.0.0.1:8000/
|
|
timeout /t 5 >nul
|