Skip to content

Commit

Permalink
Fixing some anchors
Browse files Browse the repository at this point in the history
  • Loading branch information
admc committed Sep 13, 2024
1 parent 3a8cd01 commit 4df7dfb
Show file tree
Hide file tree
Showing 8 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion docs/guide/bigquery.md
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ In this section, we will explore various BigQuery operations.

With Runme features, you can successfully run and display your query's output, formatting it into a table for easy navigation.

To do this, you first need to set your `FORMAT`. Using [Runme’s environment variable](/configuration/cell-level#set-environment-variables), you will be prompted to set the `FORMAT`. Run the command below in your code cell.
To do this, you first need to set your `FORMAT`. Using [Runme’s environment variable](/configuration/cell-level#environment-variables), you will be prompted to set the `FORMAT`. Run the command below in your code cell.

```sh {"id":"01J2KDSN92SZZYTSN11D7GS2G9"}
export FORMAT="json"
Expand Down
4 changes: 2 additions & 2 deletions docs/guide/cloud-render/cloud-run.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ title: Google Cloud Run

Runme Cloud Renderers enable you to access various cloud resources directly within your Markdown files without the need to log into your cloud console. With Cloud Renderers, you can manage your Google Cloud Run resources and perform various operations without leaving your Markdown environment.

It is available on Runme client interfaces, including the [editor](/installation/vscode) and [web browser](/installation/web). This section will explore how you can access the Google Cloud Run with Runme Cloud Renderers in a [web browser](/installation/web.md).
It is available on Runme client interfaces, including the [editor](/installation/vscode) and [web browser](/installation/web). This section will explore how you can access the Google Cloud Run with Runme Cloud Renderers in a [web browser](/installation/web).

## Prerequisites

Expand Down Expand Up @@ -34,7 +34,7 @@ mkdir my_new_directory

Where `my_new_directory` is the name of your folder.

Now, navigate into that directory by [changing directory](/configuration/cell-level#cells-current-working-directory) to `my_new_directory`.
Now, navigate into that directory by [changing directory](/configuration/cell-level#cell-cwd-current-working-directory) to `my_new_directory`.

- **Open the Web Browser**

Expand Down
2 changes: 1 addition & 1 deletion docs/guide/docker.md
Original file line number Diff line number Diff line change
Expand Up @@ -286,7 +286,7 @@ docker rm $CONTAINER_ID_TEST

Docker Compose is a tool for defining and running multi-container Docker applications. It uses YAML files to configure the application’s services and performs the creation and setup process for all the containers.

For this example, we created a [YAML file](https://github.com/stateful/blog-examples/blob/T-doc-notebook/docker-notebook/compose.yaml) to demonstrate how docker-compose works. If your YAML file is in a different directory from your current working directory, you can easily [change your Runme cell](/configuration/cell-level#cells-current-working-directory) to the directory where the file exists and then run the docker-compose command.
For this example, we created a [YAML file](https://github.com/stateful/blog-examples/blob/T-doc-notebook/docker-notebook/compose.yaml) to demonstrate how docker-compose works. If your YAML file is in a different directory from your current working directory, you can easily [change your Runme cell](/configuration/cell-level#cell-cwd-current-working-directory) to the directory where the file exists and then run the docker-compose command.

![docker-compose](/img/guide-page/dockerr-compose.png)

Expand Down
4 changes: 2 additions & 2 deletions docs/guide/foyle.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ foyle config set openai.apiKeyFile=/path/to/openai/apikey

2. **Start the Server**

Run the command below to start the Foyle server on your local machine. However, you must ensure your API Key is in the directory where this command will run. If it isn’t, you can set the directory of your code cell to the directory where your API Key is located using the [CWD feature of Runme](/configuration/cell-level#cells-current-working-directory).
Run the command below to start the Foyle server on your local machine. However, you must ensure your API Key is in the directory where this command will run. If it isn’t, you can set the directory of your code cell to the directory where your API Key is located using the [CWD feature of Runme](/configuration/cell-level#cell-cwd-current-working-directory).

```sh {"background":"true","id":"01J331ERREM6TZ2VCVES792H65"}
foyle serve
Expand Down Expand Up @@ -145,7 +145,7 @@ Now that logging is enabled, you can verify that logs are being written and iden

To view the logs, you need to follow the steps below;

- Create a new code cell block using Runme's [CWD feature](/configuration/cell-level#cells-current-working-directory) and configure the path for that code cell block to the log file path shown earlier.
- Create a new code cell block using Runme's [CWD feature](/configuration/cell-level#cell-cwd-current-working-directory) and configure the path for that code cell block to the log file path shown earlier.
- Run the command `ls -la` to access the file's content, as shown below.

![Check the list](/img/integration/runme-foyle-json-file.png)
Expand Down
2 changes: 1 addition & 1 deletion docs/guide/k8s/helm.md
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ Now, you have successfully installed it with your Runme terminal:tada:

After installing your Helm packages, you can upgrade them. The `helm upgrade` command upgrades a release to a new version of a chart or applies changes to an existing release. Helm plugins are external tools or extensions that enhance the functionality of the Helm CLI.

With Runme, you can modify the [working directory](/configuration/cell-level#cells-current-working-directory) for your code cell to a file directory of your choice. This enables you to easily run `values.yaml` even if the file is not located in the same directory as your markdown file.
With Runme, you can modify the [working directory](/configuration/cell-level#cell-cwd-current-working-directory) for your code cell to a file directory of your choice. This enables you to easily run `values.yaml` even if the file is not located in the same directory as your markdown file.

To upgrade the Ingress package installed earlier, run the command below:

Expand Down
6 changes: 3 additions & 3 deletions docs/guide/k8s/istio.md
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ kubectl apply -f samples/bookinfo/platform/kube/bookinfo.yaml

![bookinfo](/img/guide-page/runme-bookinfo.png)

Using the [Runme cwd feature](https://docs.runme.dev/configuration/cell-level#cells-current-working-directory), you can confidently set your code cell block to the path where `samples/bookinfo/platform/kube/bookinfo.yaml` is located on your local machine (the sample folder is inside of `istio-<version>` that you downloaded earlier).
Using the [Runme cwd feature](https://docs.runme.dev/configuration/cell-level#cell-cwd-current-working-directory), you can confidently set your code cell block to the path where `samples/bookinfo/platform/kube/bookinfo.yaml` is located on your local machine (the sample folder is inside of `istio-<version>` that you downloaded earlier).

## Expose the Application

Expand All @@ -151,7 +151,7 @@ kubectl apply -f samples/bookinfo/networking/bookinfo-gateway.yaml

![gateway](/img/guide-page/runme-bookinfo-gateway.png)

[Runme cwd feature](https://docs.runme.dev/configuration/cell-level#cells-current-working-directory) here to set your code cell block to the path where `samples/bookinfo/platform/kube/bookinfo.yaml` is located (the sample folder is inside of `istio-<version>` that you downloaded earlier).
[Runme cwd feature](https://docs.runme.dev/configuration/cell-level#cell-cwd-current-working-directory) here to set your code cell block to the path where `samples/bookinfo/platform/kube/bookinfo.yaml` is located (the sample folder is inside of `istio-<version>` that you downloaded earlier).

## Verify the Application

Expand Down Expand Up @@ -319,7 +319,7 @@ kubectl apply -f samples/addons

![runme-sample-addons](/img/guide-page/runme-samples-addons.png)

Using the [Runme cwd feature](/configuration/cell-level#cells-current-working-directory), you can confidently set your code cell block to the path where the samples folder is located on your local machine (the sample folder is inside of `istio-<version>` that you downloaded earlier).
Using the [Runme cwd feature](/configuration/cell-level#cell-cwd-current-working-directory), you can confidently set your code cell block to the path where the samples folder is located on your local machine (the sample folder is inside of `istio-<version>` that you downloaded earlier).

## Cleanup

Expand Down
2 changes: 1 addition & 1 deletion docs/guide/k8s/replicaset.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ When this command is successfully executed in Runme, this is the output.

With this command, you can create the resources for ReplicaSets based on the definitions provided in the file.

With this command, you can create the resources for ReplicaSets based on the definitions provided in the file. However, if your manifest.yaml file does not exist in the same directory as your Markdown file, you can use [Runme’s cell working directory feature](/configuration/cell-level#cells-current-working-directory) to set its directory.
With this command, you can create the resources for ReplicaSets based on the definitions provided in the file. However, if your manifest.yaml file does not exist in the same directory as your Markdown file, you can use [Runme’s cell working directory feature](/configuration/cell-level#cell-cwd-current-working-directory) to set its directory.

**Get Information About ReplicaSets**

Expand Down
2 changes: 1 addition & 1 deletion vercel.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
},
{
"source": "/r/extension/cwd",
"destination": "https://docs.runme.dev/configuration/cell-level#cells-current-working-directory",
"destination": "https://docs.runme.dev/configuration/cell-level#cell-cwd-current-working-directory",
"permanent": false
},
{
Expand Down

0 comments on commit 4df7dfb

Please sign in to comment.