-
Notifications
You must be signed in to change notification settings - Fork 777
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
147 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,100 @@ | ||
--- | ||
title: 'Pulse' | ||
title: '' | ||
metaTitle: 'Prisma Pulse' | ||
metaDescription: 'Prisma Pulse enables real-time database events with type-safe Prisma Client subscriptions.' | ||
hide_table_of_contents: true | ||
sidebar_position: 0 | ||
pagination_next: 'pulse/what-is-pulse' | ||
|
||
--- | ||
|
||
<TopBlock> | ||
import { | ||
Bolt, | ||
BorderBox, | ||
BoxTitle, | ||
Database, | ||
Grid, | ||
LinkCard, | ||
List, | ||
SignalStream, | ||
SquareLogo, | ||
Separator | ||
} from '@site/src/components/GettingStarted'; | ||
|
||
[Prisma Pulse](https://www.prisma.io/data-platform/pulse) enables real-time database events with type-safe Prisma Client subscriptions. | ||
import { | ||
IconTitle | ||
} from '@site/src/components/shortcodes/index'; | ||
|
||
</TopBlock> | ||
|
||
<IconTitle heading="h1" icon="fa-solid fa-signal-stream" iconColor="#16A394">Prisma Pulse</IconTitle> | ||
|
||
[Prisma Pulse](https://www.prisma.io/data-platform/pulse) enables real-time database events with type-safe Prisma Client subscriptions. | ||
|
||
<Grid> | ||
<LinkCard | ||
icon="fa-solid fa-arrow-right" | ||
title="Get started" | ||
desc="Add Accelerate to your app to use global database caching & connection pooling." | ||
link="/accelerate/getting-started" | ||
/> | ||
<LinkCard | ||
icon="fa-brands fa-github" | ||
title="Examples" | ||
desc="Explore our ready-to-run examples using Accelerate." | ||
link="https://github.com/prisma/prisma-examples/" | ||
/> | ||
</Grid> | ||
<br/> | ||
<LinkCard | ||
highlight | ||
icon="fa-solid fa-bolt" | ||
title="Speed Test" | ||
desc="Run the speed test to see how Prisma Accelerate can make your app faster." | ||
link="https://accelerate-speed-test.prisma.io/" | ||
/> | ||
|
||
## Supported databases and providers | ||
|
||
Short description text for this section. | ||
|
||
<List framed style={{ alignItems: `center`, width: `fit-content`}}> | ||
<SquareLogo | ||
url="/getting-started/setup-prisma/start-from-scratch/relational-databases-typescript-postgresql" | ||
image={'/img/technologies/postgresqlsimple.svg'} | ||
tech="Postgres SQL" | ||
/> | ||
<Separator /> | ||
<List style={{marginTop: 0}} split> | ||
<SquareLogo | ||
url="/getting-started/setup-prisma/start-from-scratch/relational-databases-typescript-mysql" | ||
image={'/img/technologies/mysqlsimple.svg'} | ||
tech="MySQL" | ||
/> | ||
<SquareLogo | ||
url="/getting-started/setup-prisma/start-from-scratch/relational-databases-typescript-sqlserver" | ||
image={'/img/technologies/sqlserver.svg'} | ||
tech="SQLServer" | ||
/> | ||
<SquareLogo | ||
url="/getting-started/setup-prisma/start-from-scratch/relational-databases-typescript-planetscale" | ||
image={'/img/technologies/planetscale.svg'} | ||
tech="PlanetScale" | ||
/> | ||
<SquareLogo | ||
url="/getting-started/setup-prisma/start-from-scratch/relational-databases-typescript-cockroachdb" | ||
image={'/img/technologies/cockroachdbgradient.svg'} | ||
tech="Cockroach DB" | ||
/> | ||
<SquareLogo | ||
url="/getting-started/setup-prisma/start-from-scratch/mongodb-typescript-mongodb" | ||
image={'/img/technologies/mongodbsimple.svg'} | ||
tech="Mongo DB" | ||
/> | ||
</List> | ||
</List> | ||
|
||
<br /> | ||
|
||
## In this section | ||
|
||
<Subsections depth="3" /> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
import { Icon } from "../Icon" | ||
|
||
const Headline = ({ component, children }) => { | ||
const Component = component; | ||
return <Component>{children}</Component>; | ||
}; | ||
|
||
export const IconTitle = ({ heading, icon, iconColor, children}: { heading: string, icon: string, iconColor: string, children: any}) => { | ||
return ( | ||
<Headline component={heading}> | ||
<Icon icon={icon} btn="left" size="inherit" color={iconColor}/> | ||
{children} | ||
</Headline> | ||
) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters