8 lines
212 B
PowerShell
8 lines
212 B
PowerShell
$ErrorActionPreference = "Stop"
|
|
|
|
$ScriptDir = Split-Path -Parent $MyInvocation.MyCommand.Path
|
|
$RootDir = Resolve-Path (Join-Path $ScriptDir "..")
|
|
$EntryPoint = Join-Path $RootDir "src\app.py"
|
|
|
|
python $EntryPoint
|