From aa20e11a4e8049323c9cdb244bdb1458e4d5dcb0 Mon Sep 17 00:00:00 2001 From: hay-kot Date: Sun, 7 Feb 2021 16:38:51 -0900 Subject: [PATCH] remove old scripts --- dev/scripts/buildx.sh | 1 - dev/scripts/start-dev-svr.ps1 | 17 ----------------- 2 files changed, 18 deletions(-) delete mode 100644 dev/scripts/buildx.sh delete mode 100644 dev/scripts/start-dev-svr.ps1 diff --git a/dev/scripts/buildx.sh b/dev/scripts/buildx.sh deleted file mode 100644 index 37ad4dcd5..000000000 --- a/dev/scripts/buildx.sh +++ /dev/null @@ -1 +0,0 @@ -docker buildx build . \ No newline at end of file diff --git a/dev/scripts/start-dev-svr.ps1 b/dev/scripts/start-dev-svr.ps1 deleted file mode 100644 index cdc305afe..000000000 --- a/dev/scripts/start-dev-svr.ps1 +++ /dev/null @@ -1,17 +0,0 @@ -$CWD = Get-Location - -$pyFolder = Join-Path -Path $CWD -ChildPath "mealie" -$pyVenv = Join-Path -Path $CWD -ChildPath "/venv/Scripts/python.exe" -$pyScript = Join-Path -Path $CWD -ChildPath "/mealie/app.py" - -$pythonCommand = "powershell.exe -NoExit -Command $pyVenv $pyScript" - -$vuePath = Join-Path -Path $CWD -ChildPath "/frontend" -$npmCommand = "powershell.exe -NoExit -Command npm run serve" - -wt -d $pyFolder "powershell.exe" $pythonCommand `; split-pane -d $vuePath "powershell.exe" $npmCommand - -Start-Process chrome "http://127.0.0.1:8000/docs" -Start-Process chrome "http://127.0.0.1:8080 -" -