8 lines
145 B
Batchfile
8 lines
145 B
Batchfile
|
|
@echo off
|
||
|
|
taskkill /f /im python.exe >nul 2>&1
|
||
|
|
timeout /t 1 /nobreak >nul
|
||
|
|
cd /d "%~dp0setec-web"
|
||
|
|
start http://localhost:5000
|
||
|
|
python app.py
|
||
|
|
pause
|