Skip to content

Commit

Permalink
Move 'Installation' page back to 'Getting started' section (#944)
Browse files Browse the repository at this point in the history
  • Loading branch information
bartlomieju authored Oct 3, 2024
1 parent 867e26e commit da45d26
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 6 deletions.
4 changes: 2 additions & 2 deletions deploy/manual/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ Let's deploy your first application - it should only take a few minutes.
## Install Deno and `deployctl`

If you haven't already, you can
[install the Deno runtime](/runtime/fundamentals/installation) using one of the
commands below:
[install the Deno runtime](/runtime/getting_started/installation) using one of
the commands below:

<deno-tabs group-id="operating-systems">
<deno-tab mac" label="macOS" default>
Expand Down
2 changes: 1 addition & 1 deletion runtime/_data.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ export const sidebar = [
label: "Hello World",
id: "/runtime/",
},
"/runtime/getting_started/installation/",
"/runtime/getting_started/first_project/",
"/runtime/getting_started/setup_your_environment/",
"/runtime/getting_started/command_line_interface/",
Expand All @@ -36,7 +37,6 @@ export const sidebar = [
label: "HTTP Server",
id: "/runtime/fundamentals/http_server/",
},
"/runtime/fundamentals/installation/",
"/runtime/fundamentals/stability_and_releases/",
],
},
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
---
title: Installation
oldUrl: /runtime/manual/getting_started/installation
oldUrl:
- /runtime/manual/fundamentals/installation
---

Deno works on macOS, Linux, and Windows. Deno is a single binary executable. It
Expand Down
2 changes: 1 addition & 1 deletion runtime/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ curl -fsSL https://deno.land/install.sh | sh
</deno-tab>
</deno-tabs>

[Additional installation options can be found here](/runtime/fundamentals/installation/).
[Additional installation options can be found here](/runtime/getting_started/installation/).
After installation, you should have the `deno` executable available on your
system path. You can verify the installation by running:

Expand Down
2 changes: 1 addition & 1 deletion subhosting/manual/quick_start.md
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ of interacting with the API in this way. However, the techniques shown here will
also work in any other environment capable of executing HTTP requests.

The example code shown here and in future chapters assume that you have
[Deno 1.38 or higher](/runtime/fundamentals/installation) installed.
[Deno 1.38 or higher](/runtime/getting_started/installation) installed.

When working with a REST API, it is useful to store authentication credentials
in the [system environment](/runtime/manual/basics/env_variables), to prevent
Expand Down

0 comments on commit da45d26

Please sign in to comment.