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(contrib): remove outdated section on using multiple terminals #13604

Merged
merged 1 commit into from
Sep 16, 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
12 changes: 0 additions & 12 deletions docs/running-locally.md
Original file line number Diff line number Diff line change
Expand Up @@ -245,15 +245,3 @@ go tool pprof http://localhost:6060/debug/pprof/profile # 30-second CPU profil
go tool pprof http://localhost:6060/debug/pprof/heap # heap profile
go tool pprof http://localhost:6060/debug/pprof/block # goroutine blocking profile
```

## Using Multiple Terminals

I run the controller in one terminal, and the UI in another. I like the UI: it is much faster to debug workflows than
the terminal. This allows you to make changes to the controller and re-start it, without restarting the UI (which I
think takes too long to start-up).

As a convenience, `CTRL=false` implies `UI=true`, so just run:

```bash
make start CTRL=false
```
Loading