File size: 209 Bytes
79580b2 |
1 2 3 4 5 6 7 8 9 10 11 12 |
if (-Not (Test-Path -Path "$PSScriptRoot\venv\Scripts")) {
Write-Output "Creating venv..."
& .\install.ps1
}
& .\venv\Scripts\Activate.ps1
python .\app.py $args
Write-Host "Launching the app"
Pause
|