Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 07e9281

Browse files
committed
Update doc links and add Jupyter module details
- Updated link formatting and paths in: - docs/admin/templates/extending-templates/modules.md - docs/tutorials/cloning-git-repositories.md - docs/user-guides/workspace-access/web-ides.md - Added Jupyter Notebook setup details in web-ides.md - Changed icon path for Airflow in web-ides.md
1 parent 63be5b3 commit 07e9281

File tree

4 files changed

+23
-6
lines changed

4 files changed

+23
-6
lines changed

docs/admin/templates/extending-templates/modules.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -190,6 +190,7 @@ coder:
190190
191191
## Next steps
192192
193-
- JFrog's [Terraform Registry support](https://jfrog.com/help/r/jfrog-artifactory-documentation/terraform-registry)
193+
- JFrog's
194+
[Terraform Registry support](https://jfrog.com/help/r/jfrog-artifactory-documentation/terraform-registry)
194195
- [Configuring the JFrog toolchain inside a workspace](../../integrations/jfrog-artifactory.md)
195196
- [Coder Module Registry](https://registry.coder.com/modules)

docs/admin/templates/extending-templates/web-ides.md

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,6 +150,22 @@ command. To add VS Code web as a web IDE, you have two options.
150150
}
151151
```
152152

153+
## Jupyter Notebook
154+
155+
To use Jupyter Notebook in your workspace, you can install it by using the
156+
[Jupyter Notebook module](https://registry.coder.com/modules/jupyter-notebook)
157+
from the Coder registry:
158+
159+
```tf
160+
module "jupyter-notebook" {
161+
source = "registry.coder.com/modules/jupyter-notebook/coder"
162+
version = "1.0.19"
163+
agent_id = coder_agent.example.id
164+
}
165+
```
166+
167+
![Jupyter Notebook in Coder](../../../images/jupyter-notebook.png)
168+
153169
## JupyterLab
154170

155171
Configure your agent and `coder_app` like so to use Jupyter. Notice the
@@ -273,7 +289,7 @@ resource "coder_app" "airflow" {
273289
agent_id = coder_agent.coder.id
274290
slug = "airflow"
275291
display_name = "Airflow"
276-
icon = "https://upload.wikimedia.org/wikipedia/commons/d/de/AirflowLogo.png"
292+
icon = "/icon/airflow.svg"
277293
url = "http://localhost:8080"
278294
subdomain = true
279295
share = "owner"

docs/tutorials/cloning-git-repositories.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,8 @@ module "git-clone" {
4444
> [template editor UI](../admin/templates/creating-templates.md#web-ui).
4545
4646
You can also use
47-
[template parameters](../admin/templates/extending-templates/parameters.md)
48-
to customize the Git URL and make it dynamic for use cases where a template
47+
[template parameters](../admin/templates/extending-templates/parameters.md) to
48+
customize the Git URL and make it dynamic for use cases where a template
4949
supports multiple projects.
5050

5151
```tf

docs/user-guides/workspace-access/web-ides.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ running VS Code in the web browser. You can read more in our
3232

3333
We also support Microsoft's official product for using VS Code in the browser. A
3434
template administrator can add it by following the
35-
[Extending Templates](../../admin/templates/extending-templates/ides/web-ides.md#vscode-web)
35+
[Extending Templates](../../admin/templates/extending-templates/web-ides.md#vs-code-web)
3636
guide.
3737

3838
![VS Code Web in Coder](../../images/vscode-web.gif)
@@ -41,7 +41,7 @@ guide.
4141

4242
Jupyter Notebook is a web-based interactive computing platform. A template
4343
administrator can add it by following the
44-
[Extending Templates](../../admin/templates/extending-templates/ides/web-ides.md#jupyter)
44+
[Extending Templates](../../admin/templates/extending-templates/web-ides.md#jupyter-notebook)
4545
guide.
4646

4747
![Jupyter Notebook in Coder](../../images/jupyter-notebook.png)

0 commit comments

Comments
 (0)