File size: 196 Bytes
c68f3c2
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
@echo off

set PYTHON="venv/scripts/python.exe"
set GIT=
set VENV_DIR=venv

:activate_venv
set PYTHON="%VENV_DIR%\Scripts\Python.exe"
echo venv %PYTHON%


:launch
%PYTHON% app.py %*
pause
exit /b