-
Notifications
You must be signed in to change notification settings - Fork 802
/
Copy pathindexData.ts
288 lines (280 loc) · 8.52 KB
/
indexData.ts
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
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
export const ProductLinkData = {
i_orm: {
title: "Talk easily <br/>to your database",
eyebrow: "ORM",
description:
"Open source Node.js and TypeScript ORM with an intuitive data model, automated migrations, type-safety, and auto-completion.",
link: "/orm",
icon: "fa-regular fa-database",
},
i_studio: {
title: "Explore and manipulate <br>your data",
eyebrow: "Studio",
description:
"Interact with your data in a simple tabular interface with full CRUD capabilities, filtering, sorting, and safe editing directly in the model cells.",
link: "/orm/tools/prisma-studio",
icon: "fa-regular fa-table",
},
t_postgres: {
title: "Managed Postgres <br/>for global workloads",
eyebrow: "Postgres",
description:
"A managed PostgreSQL database without cold starts. Easily deploy your database in three clicks, explore with a generous free tier, and scale as needed.",
link: "/postgres",
icon: "fa-regular fa-chart-pyramid",
},
t_optimize: {
title: "AI-driven insights",
eyebrow: "Optimize",
description:
"Analyze your queries and get recommedations to improve your database queries, making your app run faster.",
link: "/optimize",
icon: "fa-regular fa-magnifying-glass-chart",
},
t_accelerate: {
title: "Edge caching & connection pooling",
eyebrow: "Accelerate",
description:
"A fully managed global connection pool and caching layer for your existing database, enabling query-level cache policies.",
link: "/accelerate",
icon: "fa-regular fa-bolt",
},
t_platform: {
title: "Manage your workspaces <br/>and projects",
eyebrow: "Platform Console",
description:
"Manage your Prisma Data Platform projects, account settings, workspaces, and billing.",
link: "/platform",
icon: "fa-regular fa-desktop",
},
};
export const ORMCardLinkData = {
components: {
title: "ORM Components",
description: "Learn about the building blocks of Prisma ORM.",
links: [
{
url: "/orm/prisma-schema",
title: "Prisma Schema",
},
{
url: "/orm/reference/prisma-schema-reference",
title: "Schema reference",
},
{
url: "/orm/prisma-client",
title: "Prisma Client",
},
{
url: "/orm/reference/prisma-client-reference",
title: "Client API reference",
},
{
url: "/orm/tools/prisma-cli",
title: "Prisma CLI",
},
{
url: "/orm/reference/prisma-cli-reference",
title: "Prisma CLI reference",
},
{
url: "/orm/prisma-migrate",
title: "Prisma Migrate",
},
{
url: "/orm/reference/error-reference",
title: "Error message reference",
},
],
},
reference: {
title: "Platform Reference",
description:
"Understand the usage and API surface of our platform products built on top of Prisma ORM.",
links: [
{
url: "/accelerate/api-reference",
title: "Accelerate API reference",
},
{
url: "/platform",
title: "Platform",
},
{
url: "/platform/platform-cli/commands",
title: "Platform CLI commands",
},
],
},
};
export const ORMGeneralLinkData = [
{
title: `CRUD`,
description: "How to perform CRUD operations with your generated Prisma Client API. ",
url: "/orm/prisma-client/queries/crud",
icon: "fa-solid fa-arrow-right-arrow-left",
},
{
title: `Advanced queries`,
description: "Learn how to perform advanced queries with raw SQL in Prisma ORM.",
url: "/orm/prisma-client/using-raw-sql",
icon: "fa-solid fa-download",
},
{
title: `Deployment guides`,
description:
"Deploy Node.js applications with Prisma Client to platforms like Vercel, AWS Lambda, Netlify and Heroku.",
url: "/orm/prisma-client/deployment",
icon: "fa-solid fa-book",
},
{
title: `Platform CLI commands`,
description:
"Learn how to access the Platform using the integrated commands in the Prisma CLI.",
url: "/platform/platform-cli/commands",
icon: "fa-solid fa-terminal",
},
];
export const GeneralLinks_Build = [
{
title: `CRUD`,
description: "How to perform CRUD operations with your generated Prisma Client API. ",
url: "/orm/prisma-client/queries/crud",
icon: "fa-solid fa-arrow-right-arrow-left",
},
{
title: `Advanced queries`,
description: "Learn how to perform advanced queries with raw SQL in Prisma ORM.",
url: "/orm/prisma-client/using-raw-sql",
icon: "fa-solid fa-download",
},
{
title: `Deployment guides`,
description:
"Deploy Node.js applications with Prisma Client to platforms like Vercel, AWS Lambda, Netlify and Heroku.",
url: "/orm/prisma-client/deployment",
icon: "fa-solid fa-book",
},
];
export const GeneralLinks_Fortify = [
{
title: `Set up Optimize`,
description: "Start analyzing your queries and generate insights to improve your queries.",
url: "/optimize/getting-started",
icon: "fa-solid fa-magnifying-glass-chart",
},
{
title: `Recommendations`,
description:
"Explore the different recommendations such as indexing issues, excessive data retrieval, and inefficient query patterns.",
url: "/optimize/recommendations",
icon: "fa-solid fa-chart-simple",
},
{
title: `Prisma AI`,
description: "Understand the recommendations easier by asking our AI follow-up questions.",
url: "/optimize/prisma-ai",
icon: "fa-solid fa-message-bot",
},
];
export const GeneralLinks_Grow = [
{
title: `Connection pooling`,
description:
"Adjust pool size, configure timeouts, and enable autoscaling to improve performance.",
url: "/accelerate/connection-pooling",
icon: "fa-solid fa-bolt",
},
{
title: `Database caching`,
description:
"How to improve query performance by configuring cache behavior using TTL and SWR.",
url: "/accelerate/caching",
icon: "fa-solid fa-bolt",
},
{
title: `Managed Postgres database`,
description:
"Deploy Prisma Postgres for a scalable, production-ready database featuring integrated connection pooling.",
url: "/postgres/",
icon: "fa-solid fa-chart-pyramid",
},
];
export const DatabaseData = [
{
title: "PostgreSQL",
icon: "/img/technologies/postgresqlsimple.svg",
darkIcon: "/img/technologies/postgresqldark.svg",
url: "/orm/overview/databases/postgresql",
},
{
title: "MySQL",
icon: "/img/technologies/mysqlsimple.svg",
darkIcon: "/img/technologies/mysqlsimple.svg",
url: "/orm/overview/databases/mysql",
},
{
title: "SQL Server",
icon: "/img/technologies/sqlserver.svg",
darkIcon: "/img/technologies/sqlserver.svg",
url: "/orm/overview/databases/sql-server",
},
{
title: "SQLite",
icon: "/img/technologies/sqlite.svg",
darkIcon: "/img/technologies/sqlite.svg",
url: "/orm/overview/databases/sqlite",
},
{
title: "MongoDB",
icon: "/img/technologies/mongodbsimple.svg",
darkIcon: "/img/technologies/mongodbsimple.svg",
url: "/orm/overview/databases/mongodb",
},
{
title: "CockroachDB",
icon: "/img/technologies/cockroachdb.svg",
darkIcon: "/img/technologies/cockroachdbdark.svg",
url: "/orm/overview/databases/cockroachdb",
},
{
title: "PlanetScale",
icon: "/img/technologies/planetscale.svg",
darkIcon: "/img/technologies/planetscaledark.svg",
url: "/orm/overview/databases/planetscale",
},
{
title: "MariaDB",
icon: "/img/technologies/mariadb.svg",
darkIcon: "/img/technologies/mariadbdark.svg",
url: "/orm/overview/databases/mysql",
},
];
export const CommunityLinksData = [
{
id: "discord",
title: "Discord",
description:
"Chat in real-time, hang out, and share ideas with community members and our team.",
icon: "fa-brands fa-discord",
link: "https://pris.ly/discord?utm_source=docs&utm_medium=community_links",
linkText: "Join our server",
},
{
id: "github",
title: "GitHub",
description:
"Browse the Prisma ORM source code, send feedback, or join the discussion on GitHub.",
icon: "fa-brands fa-github",
link: "https://pris.ly/github?utm_source=docs&utm_medium=community_links",
linkText: "Contribute in GitHub",
},
{
id: "X",
title: "X",
description: "Stay up-to-date, join the discussion, and connect with the community on X.",
icon: "fa-brands fa-x-twitter",
link: "https://pris.ly/x?utm_source=docs&utm_medium=community_links",
linkText: "Follow us on X",
},
];