diff --git a/make_venv.cmd b/make_venv.cmd new file mode 100644 index 0000000..5aba19c --- /dev/null +++ b/make_venv.cmd @@ -0,0 +1,16 @@ +@echo off + +echo Installing venv... +python -m pip install virtualenv + +echo[ +echo Creating venv... +python -m venv venv +call venv\Scripts\activate.bat + +echo[ +echo Pulling dependencies... +pip install --upgrade pip +pip install -r requirements.txt + +pause \ No newline at end of file diff --git a/manage.cmd b/manage.cmd new file mode 100644 index 0000000..e79914f --- /dev/null +++ b/manage.cmd @@ -0,0 +1,2 @@ +@echo off +python %~dp0\app\manage.py %* \ No newline at end of file diff --git a/venv_cmd.cmd b/venv_cmd.cmd new file mode 100644 index 0000000..8fe528d --- /dev/null +++ b/venv_cmd.cmd @@ -0,0 +1,2 @@ +@set APP_PATH=%~dp0\app +@cmd /k "set PATH=%PATH%;%APP_PATH% && venv\Scripts\activate.bat \ No newline at end of file