mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-24 12:54:40 +01:00
move run tools
This commit is contained in:
parent
03e5907a1c
commit
65f4088797
6 changed files with 18 additions and 6 deletions
|
|
@ -1,2 +0,0 @@
|
|||
.\venv\Scripts\Activate.ps1
|
||||
python pype.py mongodb
|
||||
|
|
@ -1,2 +0,0 @@
|
|||
.\venv\Scripts\Activate.ps1
|
||||
python pype.py settings --dev
|
||||
|
|
@ -1,2 +0,0 @@
|
|||
.\venv\Scripts\Activate.ps1
|
||||
python pype.py tray --debug
|
||||
6
tools/run_mongo.ps1
Normal file
6
tools/run_mongo.ps1
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
$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)\pype.py" mongodb
|
||||
6
tools/run_settings.ps1
Normal file
6
tools/run_settings.ps1
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
$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)\pype.py" settings --dev
|
||||
6
tools/run_tray.ps1
Normal file
6
tools/run_tray.ps1
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
$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)\pype.py" tray --debug
|
||||
Loading…
Add table
Add a link
Reference in a new issue