Skip to content

Commit

Permalink
rename manual
Browse files Browse the repository at this point in the history
  • Loading branch information
kwhinnery committed Aug 28, 2023
1 parent 3e58304 commit 84aa7ed
Show file tree
Hide file tree
Showing 205 changed files with 538 additions and 249 deletions.
13 changes: 6 additions & 7 deletions deploy/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@ Click on the **+New Project** button

There are three ways to deploy a new project in Deno Deploy:

- [Deploy with Github integration](./guide/ci_github)
- [Deploy with `deployctl`](./guide/deployctl)
- [Deploy with Deno Deploy Playground](./guide/playgrounds)
- [Deploy with Github integration](./manual/ci_github)
- [Deploy with `deployctl`](./manual/deployctl)
- [Deploy with Deno Deploy Playground](./manual/playgrounds)

Select one of these methods, depending on the kind of project you have.

Expand All @@ -34,15 +34,15 @@ Select one of these methods, depending on the kind of project you have.
We generally recommend deploying with the Github integration because it is the
fastest. If you need to run a CI build process first (for example generating
static assets), we recommend deploying with the Github integration, and
selecting [Github Action](./guide/ci_github#github-action)
selecting [Github Action](./manual/ci_github#github-action)

## **Step 3:** Adjust project settings if necessary

Once the project has been created, you can adjust a number of project settings
on the **Settings** tab. For more details, follow the links below.

- [Custom domain](./guide/custom-domains)
- [Environment variables](./guide/environment-variables)
- [Custom domain](./manual/custom-domains)
- [Environment variables](./manual/environment-variables)

## **Step 4:** Find project URL

Expand All @@ -51,4 +51,3 @@ The production URL is the URL that your production deployment can be reached at.
The project name will determine a project's production URL.

It has the form `$PROJECT_ID.deno.dev` (e.g. https://dead-clam-55.deno.dev).

File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion deploy/guide/index.md → deploy/manual/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
displayed_sidebar: deployGuideHome
sidebar_position: 1
sidebar_label: Overview
pagination_next: guide/how-to-deploy
pagination_next: manual/how-to-deploy
---

# About Deno Deploy
Expand Down
2 changes: 1 addition & 1 deletion deploy/guide/kv.md → deploy/manual/kv.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Additionally, Deno KV is available within Deno itself, utilizing SQLite as its
backend. This feature has been accessible since Deno v1.32 with the `--unstable`
flag.

[Discover how to effectively use the Deno KV database by referring to the Deno Runtime user guide.](/runtime/guide/runtime/kv)
[Discover how to effectively use the Deno KV database by referring to the Deno Runtime user guide.](/runtime/manual/runtime/kv)

## Getting started

Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 2 additions & 0 deletions deploy/guide/use-cases.md → deploy/manual/use-cases.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# Deno Deploy Use Cases

Some popular use-cases for Deno currently are:

- [Middleware](#middleware)
Expand Down
3 changes: 0 additions & 3 deletions docs/index.md

This file was deleted.

23 changes: 8 additions & 15 deletions docusaurus.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -39,10 +39,10 @@ const config = {
/** @type {import('@docusaurus/preset-classic').Options} */
({
docs: {
sidebarPath: require.resolve("./sidebars.js"),
// Please change this to your repo.
// Remove this to remove the "edit this page" links.
editUrl: "https://github.com/denoland/deno-docs/",
id: "runtime",
path: "runtime",
routeBasePath: "runtime",
sidebarPath: require.resolve("./sidebars/runtime.js"),
},
/*
blog: {
Expand Down Expand Up @@ -73,24 +73,17 @@ const config = {
],

plugins: [
[
"@docusaurus/plugin-content-docs",
{
id: "runtime",
path: "runtime",
routeBasePath: "runtime",
sidebarPath: require.resolve("./sidebars/runtime.js"),
},
],
/*
[
"@docusaurus/plugin-content-docs",
{
id: "stdlib",
path: "stdlib",
routeBasePath: "stdlib",
sidebarPath: require.resolve("./sidebars.js"),
sidebarPath: require.resolve("./sidebars/runtime.js"),
},
],
*/
[
"@docusaurus/plugin-content-docs",
{
Expand Down Expand Up @@ -255,7 +248,7 @@ const config = {
},
{
label: "Privacy Policy",
href: "/deploy/guide/privacy-policy",
href: "/deploy/manual/privacy-policy",
},
],
},
Expand Down
Loading

0 comments on commit 84aa7ed

Please sign in to comment.