hahafofo commited on
Commit
c68f3c2
1 Parent(s): 5d0a444
Files changed (2) hide show
  1. webui.bat +15 -0
  2. webui.sh +5 -0
webui.bat ADDED
@@ -0,0 +1,15 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ @echo off
2
+
3
+ set PYTHON="venv/scripts/python.exe"
4
+ set GIT=
5
+ set VENV_DIR=venv
6
+
7
+ :activate_venv
8
+ set PYTHON="%VENV_DIR%\Scripts\Python.exe"
9
+ echo venv %PYTHON%
10
+
11
+
12
+ :launch
13
+ %PYTHON% app.py %*
14
+ pause
15
+ exit /b
webui.sh ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
 
1
+ #!/bin/bash
2
+
3
+ ./venv/bin/activate
4
+
5
+ python app.py