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

Updates the Getting Started Page [Sep 2021] #174

Merged
merged 3 commits into from
Sep 25, 2021
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
4 changes: 2 additions & 2 deletions src/book/03-guides/01-main-codebase/01-getting-started.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -279,7 +279,7 @@ Windows and MacOS users who want to connect to NUsight will need to set up the d
./b run keyboardwalkfake --network nuclearnet
```

See the [NUsight](#nusight) section below for details.
See the [NUsight](#get-build-and-run-nusight) section below for details.

</Alert>

Expand Down Expand Up @@ -445,7 +445,7 @@ Open up a new terminal to run NUsight and NUbots code side by side.
6. Inspect the network to find the NUbots container's IP address

```bash
docker inspect --format='{{range .NetworkSettings.Networks}}{{.IPAddress}}{{end}}' nubots_generic
docker inspect --format='{{range .NetworkSettings.Networks}}{{.IPAddress}}{{end}}' $(docker ps | grep nubots:selected | cut -d " " -f1)
```

The IP address given will be referred to as `<ADDRESS>`. You will need to be running a binary in NUbots or this will not work. See step 3 for details.
Expand Down