diff --git a/scripts/dev/LocalDevSetup.ps1 b/scripts/dev/LocalDevSetup.ps1 index f34dc146..42f82891 100644 --- a/scripts/dev/LocalDevSetup.ps1 +++ b/scripts/dev/LocalDevSetup.ps1 @@ -1,7 +1,7 @@ # Create venv and install dependencies + imports $backend = Resolve-Path -Path "$PSScriptRoot\..\..\rsconcept\backend" -$frontend = Resolve-Path -Path "$PSScriptRoot\..\..\rsconcept\fronted" +$frontend = Resolve-Path -Path "$PSScriptRoot\..\..\rsconcept\frontend" $envPath = "$backend\venv" $python = "$envPath\Scripts\python.exe" @@ -12,7 +12,7 @@ function LocalDevelopmentSetup() { function FrontendSetup() { Set-Location $frontend - & npm install + & npm install --only=dev } function BackendSetup() {