aboutsummaryrefslogtreecommitdiffstats
path: root/dev.bat
blob: fe0824e01edcbc9e781ac42fb585c91d5f380f77 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
@echo off
set VENV=.\venv

virtualenv %VENV% --always-copy
if %errorlevel% neq 0 exit /b %errorlevel%
call %VENV%\Scripts\activate.bat
if %errorlevel% neq 0 exit /b %errorlevel%
python -m pip install --disable-pip-version-check -U pip
if %errorlevel% neq 0 exit /b %errorlevel%
pip install -r requirements.txt
if %errorlevel% neq 0 exit /b %errorlevel%

echo.
echo * Created virtualenv environment in %VENV%.
echo * Installed all dependencies into the virtualenv.
echo * Activated virtualenv environment.