From 40e3322b251b017433dec250dd4a27f91b84a432 Mon Sep 17 00:00:00 2001 From: Rudhra Raveendran Date: Fri, 11 Apr 2025 14:02:21 -0700 Subject: [PATCH] docs: Add PowerShell example for running web client only (#17546) Add PowerShell example for running web client only --- docs/docs/developer/setup.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/docs/docs/developer/setup.md b/docs/docs/developer/setup.md index eb84b598e2..1d08453790 100644 --- a/docs/docs/developer/setup.md +++ b/docs/docs/developer/setup.md @@ -63,6 +63,13 @@ If you only want to do web development connected to an existing, remote backend, IMMICH_SERVER_URL=https://demo.immich.app/ npm run dev ``` +If you're using PowerShell on Windows you may need to set the env var separately like so: + +```powershell +$env:IMMICH_SERVER_URL = "https://demo.immich.app/" +npm run dev +``` + #### `@immich/ui` To see local changes to `@immich/ui` in Immich, do the following: