Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: fix web development setup instructions #6969

Merged
merged 1 commit into from
Feb 8, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 6 additions & 5 deletions docs/docs/developer/setup.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,12 +58,13 @@ Please refer to the [Flutter's official documentation](https://flutter.dev/docs/

If you only want to do web development connected to an existing, remote backend, follow these steps:

1. Enter the web directory - `cd web/`
2. Install web dependencies - `npm i`
3. Start the web development server
1. Build the Immich SDK - `cd open-api/typescript-sdk && npm i && npm run build && cd -`
2. Enter the web directory - `cd web/`
3. Install web dependencies - `npm i`
4. Start the web development server

```
IMMICH_SERVER_URL=https://demo.immich.app/api npm run dev
```bash
IMMICH_SERVER_URL=https://demo.immich.app/ npm run dev
```

## IDE setup
Expand Down
Loading