GAL / start.bat
Clarkoer's picture
Add local start scripts
bf97096
raw
history blame contribute delete
253 Bytes
@echo off
setlocal
cd /d "%~dp0"
if not exist ".venv" (
py -3 -m venv .venv
)
call .venv\Scripts\activate.bat
python -m pip install --upgrade pip
python -m pip install -r requirements.txt
if "%PORT%"=="" set PORT=5000
python .\Backend\server.py