mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-24 12:54:40 +01:00
20 lines
No EOL
381 B
PowerShell
20 lines
No EOL
381 B
PowerShell
<#
|
|
.SYNOPSIS
|
|
Helper script to Pype Settings UI
|
|
|
|
.DESCRIPTION
|
|
This script will run Pype and open Settings UI.
|
|
|
|
.EXAMPLE
|
|
|
|
PS> .\run_settings.ps1
|
|
|
|
#>
|
|
|
|
$script_dir = Split-Path -Path $MyInvocation.MyCommand.Definition -Parent
|
|
$pype_root = (Get-Item $script_dir).parent.FullName
|
|
|
|
& "$($pype_root)\venv\Scripts\Activate.ps1"
|
|
|
|
python "$($pype_root)\start.py" settings --dev
|
|
deactivate |