Skip to content

Commit 4cc9621

Browse files
move kv files (#2618)
Co-authored-by: Yusuke Tanaka <wing0920@gmail.com>
1 parent 144d988 commit 4cc9621

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

49 files changed

+200
-219
lines changed

_components/Feedback.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ export default function Feedback({ file }: { file: string | undefined }) {
117117
rel=""
118118
class="mt-4 !underline underline-offset-2 text-xs block"
119119
target="_blank"
120-
href="/deploy/privacy-policy"
120+
href="/deploy/privacy_policy"
121121
>
122122
Privacy policy
123123
</a>

_components/Footer.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ const data = [
151151
},
152152
{
153153
label: "Privacy Policy",
154-
href: "/deploy/privacy-policy",
154+
href: "/deploy/privacy_policy",
155155
},
156156
],
157157
},

_config.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -137,9 +137,9 @@ site.copy("timeUtils.ts");
137137
site.copy("subhosting/api/images");
138138
site.copy("deploy/docs-images");
139139
site.copy("deploy/images");
140-
site.copy("deploy/kv/manual/images");
140+
site.copy("deploy/classic/images");
141+
site.copy("deploy/kv/images");
141142
site.copy("deploy/tutorials/images");
142-
site.copy("deploy/kv/tutorials/images");
143143
site.copy("runtime/fundamentals/images");
144144
site.copy("runtime/getting_started/images");
145145
site.copy("runtime/reference/images");

data.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
"category": "Runtime"
1515
},
1616
{
17-
"path": "/deploy/pricing-and-limits/#tls-proxying",
17+
"path": "/deploy/pricing_and_limits/#tls-proxying",
1818
"title": "TLS proxying",
1919
"content": "TLS termination is required for outgoing connections to port 443 (the port used\nfor HTTPS). Using Deno.connect to\nconnect to these ports is prohibited. If you need to establish a TLS connection\nto port 443, please use\nDeno.connectTls instead. fetch is\nnot impacted by this restriction.\nThis restriction is in place because connecting to port 443 without terminating\nTLS is frequently used in TLS-over-TLS proxies, which are prohibited on Deno\nDeploy as per our acceptable use policy.\n",
2020
"section": "Pricing and limitations",

deploy/_data.ts

Lines changed: 30 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ export const sidebar = [
3232
},
3333
{
3434
title: "Environment Variables and Contexts",
35-
href: "/deploy/reference/env-vars-and-contexts/",
35+
href: "/deploy/reference/env_vars_and_contexts/",
3636
},
3737
{
3838
title: "Timelines",
@@ -48,15 +48,15 @@ export const sidebar = [
4848
},
4949
{
5050
title: "Deno KV",
51-
href: "/deploy/reference/deno-kv/",
51+
href: "/deploy/reference/deno_kv/",
5252
},
5353
{
5454
title: "Databases",
5555
href: "/deploy/reference/databases/",
5656
},
5757
{
5858
title: "Cloud Connections",
59-
href: "/deploy/reference/cloud-connections/",
59+
href: "/deploy/reference/cloud_connections/",
6060
},
6161
{
6262
title: "OIDC",
@@ -84,6 +84,29 @@ export const sidebar = [
8484
},
8585
],
8686
},
87+
{
88+
title: "KV",
89+
items: [
90+
{ title: "Overview", href: "/deploy/kv/" },
91+
{ title: "Key space", href: "/deploy/kv/key_space/" },
92+
{ title: "Operations", href: "/deploy/kv/operations/" },
93+
{
94+
title: "Key expiration",
95+
href: "/deploy/kv/key_expiration/",
96+
},
97+
{
98+
title: "Secondary indexes",
99+
href: "/deploy/kv/secondary_indexes/",
100+
},
101+
{ title: "Transactions", href: "/deploy/kv/transactions/" },
102+
{ title: "Node", href: "/deploy/kv/node/" },
103+
{
104+
title: "Data modeling",
105+
href: "/deploy/kv/data_modeling_typescript/",
106+
},
107+
{ title: "Backup", href: "/deploy/kv/backup/" },
108+
],
109+
},
87110
{
88111
title: "Policies and Limits",
89112
items: [
@@ -93,17 +116,17 @@ export const sidebar = [
93116
},
94117
{
95118
title: "Acceptable Use Policy",
96-
href: "/deploy/acceptable-use-policy/",
119+
href: "/deploy/acceptable_use_policy/",
97120
},
98121
{
99122
title: "Fulfillment Policy",
100-
href: "/deploy/fulfillment-policy/",
123+
href: "/deploy/fulfillment_policy/",
101124
},
102-
{ title: "Privacy Policy", href: "/deploy/privacy-policy/" },
125+
{ title: "Privacy Policy", href: "/deploy/privacy_policy/" },
103126
{ title: "Security", href: "/deploy/security/" },
104127
{
105128
title: "Terms and Conditions",
106-
href: "/deploy/terms-and-conditions/",
129+
href: "/deploy/terms_and_conditions/",
107130
},
108131
],
109132
},
File renamed without changes.

deploy/changelog.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ description: "Listing notable progress in the development and evolution of Deno
103103
you through the process of connecting your app to AWS or GCP.
104104
- You can use the standard AWS and GCP SDKs to access the services - no need
105105
to re-write any code to use a different API.
106-
- [Learn more in the documentation.](/deploy/reference/cloud-connections/)
106+
- [Learn more in the documentation.](/deploy/reference/cloud_connections/)
107107
- The application metrics page now shows more metrics, including V8 memory
108108
metrics such as heap size and garbage collection stats, as well as process
109109
level metrics such as CPU usage and overall memory usage.

deploy/classic/_data.ts

Lines changed: 4 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ export const sidebar = [
1919
{ title: "Regions", href: "/deploy/classic/regions/" },
2020
{
2121
title: "Pricing and limits",
22-
href: "/deploy/pricing-and-limits/",
22+
href: "/deploy/pricing_and_limits/",
2323
},
2424
],
2525
},
@@ -48,36 +48,13 @@ export const sidebar = [
4848
title: "Logs",
4949
href: "/deploy/classic/logs/",
5050
},
51-
{
52-
title: "KV",
53-
items: [
54-
{ title: "Overview", href: "/deploy/kv/manual/" },
55-
{ title: "Key space", href: "/deploy/kv/manual/key_space/" },
56-
{ title: "Operations", href: "/deploy/kv/manual/operations/" },
57-
{
58-
title: "Key expiration",
59-
href: "/deploy/kv/manual/key_expiration/",
60-
},
61-
{
62-
title: "Secondary indexes",
63-
href: "/deploy/kv/manual/secondary_indexes/",
64-
},
65-
{ title: "Transactions", href: "/deploy/kv/manual/transactions/" },
66-
{ title: "Node", href: "/deploy/kv/manual/node/" },
67-
{
68-
title: "Data modeling",
69-
href: "/deploy/kv/manual/data_modeling_typescript/",
70-
},
71-
{ title: "Backup", href: "/deploy/kv/manual/backup/" },
72-
],
73-
},
7451
{
7552
title: "Queues",
76-
href: "/deploy/kv/manual/queue_overview/",
53+
href: "/deploy/classic/queues/",
7754
},
7855
{
7956
title: "Cron",
80-
href: "/deploy/kv/manual/cron/",
57+
href: "/deploy/classic/cron/",
8158
},
8259
{
8360
title: "Edge cache",
@@ -90,7 +67,7 @@ export const sidebar = [
9067
items: [
9168
{
9269
title: "Deno KV",
93-
href: "/deploy/kv/manual/on_deploy/",
70+
href: "/deploy/classic/kv_on_deploy/",
9471
},
9572
{
9673
title: "Third-Party Databases",
Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
title: "Scheduling cron tasks"
33
oldUrl:
44
- /kv/manual/cron/
5+
- /deploy/kv/manual/cron/
56
---
67

78
:::info Legacy Documentation
@@ -76,7 +77,7 @@ Any nested `Deno.cron` definitions (e.g. inside
7677
in an error or will be ignored.
7778

7879
If you need to schedule tasks dynamically during your Deno program execution,
79-
you can use the [Deno Queues](./queue_overview) APIs.
80+
you can use the [Deno Queues](/deploy/classic/queues/) APIs.
8081

8182
### Time zone
8283

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
---
22
title: "Edge Cache"
3+
oldUrl:
4+
- /deploy/classic/edge-cache/
35
---
46

57
:::info Legacy Documentation

0 commit comments

Comments
 (0)