File size: 173 Bytes
79580b2
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
if (-Not (Test-Path -Path "$PSScriptRoot\venv\Scripts")) {
    & .\install.ps1
}

& .\venv\Scripts\Activate.ps1

python .\app.py $args

Write-Host "Launching the app"
Pause