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

Add manifest + readmes to examples #2309

Merged
merged 18 commits into from
Jun 6, 2023
Merged
Show file tree
Hide file tree
Changes from 12 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
2 changes: 1 addition & 1 deletion docs/content/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@ If you are looking for other language support, search for an open issue on [GitH

The fastest way to get started is with a quick start guide for [Python](getting-started/python.md) or [Rust](getting-started/rust.md).

Many of our [examples](getting-started/examples.md) currently utilize Python. Even for
Many of our [examples](/examples) currently utilize Python. Even for
Rust users, these examples are a good way to get a sense of how Rerun works and how you might use it in your own
project.
300 changes: 0 additions & 300 deletions docs/content/getting-started/examples.md

This file was deleted.

2 changes: 1 addition & 1 deletion docs/content/getting-started/logging-python.md
Original file line number Diff line number Diff line change
Expand Up @@ -271,4 +271,4 @@ You can also save a recording (or a portion of it) as you're visualizing it, dir

This closes our whirlwind tour of Rerun. We've barely scratched the surface of what's possible, but this should have hopefully given you plenty pointers to start experimenting.

To go further, have a look at some of our other [examples](./examples.md).
To go further, have a look at some of our other [examples](/examples).
2 changes: 1 addition & 1 deletion docs/content/getting-started/logging-rust.md
Original file line number Diff line number Diff line change
Expand Up @@ -308,4 +308,4 @@ You can also save a recording (or a portion of it) as you're visualizing it, dir

This closes our whirlwind tour of Rerun. We've barely scratched the surface of what's possible, but this should have hopefully given you plenty pointers to start experimenting.

To go further, have a look at some of our other [examples](./examples.md).
To go further, have a look at some of our other [examples](/examples).
2 changes: 1 addition & 1 deletion docs/content/getting-started/viewer-walkthrough.md
Original file line number Diff line number Diff line change
Expand Up @@ -241,6 +241,6 @@ Again, if you ran into any issues following this guide, please don't hesitate to
To get started with writing a program to logging data with the Rerun SDK see the [Python](logging-python.md) or
[Rust](logging-rust.md) getting started guides.

To see and explore other data, you can check out the [examples](examples.md).
To see and explore other data, you can check out the [examples](/examples).

For deeper context on the ideas covered here, consult the [Concept overview](../concepts.md).
4 changes: 2 additions & 2 deletions docs/content/reference/sdk-operating-modes.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ order: 1

There are many different ways of sending data to the Rerun Viewer depending on what you're trying to achieve and whether the viewer is running in the same process as your code, in another process, or even as a separate web application.

In the [official examples](../getting-started/examples.md), these different modes of operation are exposed via a standardized set of flags that we'll cover below.
In the [official examples](/examples), these different modes of operation are exposed via a standardized set of flags that we'll cover below.
We will also demonstrate how you can achieve the same behavior in your own code.

## Operating Modes
Expand Down Expand Up @@ -75,4 +75,4 @@ We provide helpers for both Python & Rust to effortlessly add and properly handl
- For Python, checkout the [`script_helpers`](https://ref.rerun.io/docs/python/latest/package/rerun/script_helpers/) module.
- For Rust, checkout our [`clap`]() [integration](https://docs.rs/rerun/latest/rerun/clap/index.html).

Have a look at the [official examples](../getting-started/examples.md) to see these helpers in action.
Have a look at the [official examples](/examples) to see these helpers in action.
Loading