-
Notifications
You must be signed in to change notification settings - Fork 357
Expand file tree
/
Copy path_data.ts
More file actions
168 lines (166 loc) · 3.79 KB
/
_data.ts
File metadata and controls
168 lines (166 loc) · 3.79 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
import { Sidebar, SidebarNav } from "../types.ts";
export const sidebar = [
{
title: "Deno Deploy",
items: [
{ title: "About", href: "/deploy/" },
{
title: "Getting started",
href: "/deploy/getting_started/",
},
],
},
{
title: "Reference",
items: [
{
title: "Accounts",
href: "/deploy/reference/accounts/",
},
{
title: "Organizations",
href: "/deploy/reference/organizations/",
},
{
title: "Apps",
href: "/deploy/reference/apps/",
},
{
title: "Builds",
href: "/deploy/reference/builds/",
},
{
title: "Environment Variables and Contexts",
href: "/deploy/reference/env_vars_and_contexts/",
},
{
title: "Timelines",
href: "/deploy/reference/timelines/",
},
{
title: "Tunnel",
href: "/deploy/reference/tunnel/",
},
{
title: "Observability",
href: "/deploy/reference/observability/",
},
{
title: "Domains",
href: "/deploy/reference/domains/",
},
{
title: "Deno KV",
href: "/deploy/reference/deno_kv/",
},
{
title: "Databases",
href: "/deploy/reference/databases/",
},
{
title: "Cloud Connections",
href: "/deploy/reference/cloud_connections/",
},
{
title: "OIDC",
href: "/deploy/reference/oidc/",
},
{
title: "Runtime",
href: "/deploy/reference/runtime/",
},
{
title: "Framework support",
href: "/deploy/reference/frameworks/",
},
{
title: "CDN and caching",
href: "/deploy/reference/caching/",
},
{
title: "Playgrounds",
href: "/deploy/reference/playgrounds/",
},
{
title: "Deploy Button",
href: "/deploy/reference/button/",
},
],
},
{
title: "KV",
items: [
{ title: "Overview", href: "/deploy/kv/" },
{ title: "Key space", href: "/deploy/kv/key_space/" },
{ title: "Operations", href: "/deploy/kv/operations/" },
{
title: "Key expiration",
href: "/deploy/kv/key_expiration/",
},
{
title: "Secondary indexes",
href: "/deploy/kv/secondary_indexes/",
},
{ title: "Transactions", href: "/deploy/kv/transactions/" },
{ title: "Node", href: "/deploy/kv/node/" },
{
title: "Data modeling",
href: "/deploy/kv/data_modeling_typescript/",
},
{ title: "Backup", href: "/deploy/kv/backup/" },
],
},
{
title: "Policies and Limits",
items: [
{
title: "Usage and Limitations",
href: "/deploy/usage/",
},
{
title: "Acceptable Use Policy",
href: "/deploy/acceptable_use_policy/",
},
{
title: "Fulfillment Policy",
href: "/deploy/fulfillment_policy/",
},
{ title: "Privacy Policy", href: "/deploy/privacy_policy/" },
{ title: "Security", href: "/deploy/security/" },
{
title: "Terms and Conditions",
href: "/deploy/terms_and_conditions/",
},
],
},
{
title: "Support and Feedback",
items: [
{
title: "Changelog",
href: "/deploy/changelog/",
},
{ title: "Support", href: "/deploy/support/" },
],
},
] satisfies Sidebar;
export const sectionTitle = "Deno Deploy";
export const sectionHref = "/deploy/";
export const SidebarNav = [
{
title: "Deno Deploy",
href: "/deploy/",
},
{
title: "Sandboxes",
href: "/sandboxes/",
},
{
title: "Deploy Classic",
href: "/deploy/classic/",
},
{
title: "Subhosting",
href: "/subhosting/manual/",
},
] satisfies SidebarNav;