diff --git a/pages/blog/_posts/neon-postgres-database-triggers-for-durable-functions.mdx b/pages/blog/_posts/neon-postgres-database-triggers-for-durable-functions.mdx index d0cc97594..40b8d9fef 100644 --- a/pages/blog/_posts/neon-postgres-database-triggers-for-durable-functions.mdx +++ b/pages/blog/_posts/neon-postgres-database-triggers-for-durable-functions.mdx @@ -10,7 +10,7 @@ disableCTA: true We're excited to announce our integration with [Neon](https://neon.tech/), enabling you to trigger durable functions directly from changes in your Neon Postgres database. -Neon is an open- source serverless Postgres platform that separates storage from compute, offering autoscaling and code-like database branching. Neon recently released support for [logical replication](https://neon.tech/docs/guides/logical-replication-guide) which enables listening for database changes. +Neon is an open-source serverless Postgres platform that separates storage from compute, offering autoscaling and code-like database branching. Neon recently released support for [logical replication](https://neon.tech/docs/guides/logical-replication-guide) which enables listening for database changes. This new and powerful integration unlocks a wide range of use cases by decoupling triggers from your application logic, making it easier to build durable workflows. @@ -44,9 +44,9 @@ inngest.createFunction( The end result is a simple way to trigger durable functions reacting to database changes with Inngest. You can write functions that run in response to rows being inserted, updated, or deleted from any table in your database. Functions execute in your own codebase, on your own servers, using any Inngest language SDK (TypeScript, Python, Go, or Kotlin/Java). -### TODO PLACEHOLDER - Potentially link to dbcap OSS repo + -### A new powerful Inngest Function's TriggerBenefits of this approach +### A powerful new trigger for functions Leveraging events directly from your database to trigger functions provides clear benefits out of the box. @@ -74,7 +74,7 @@ A prerequisite for setup is enabling [logical replication](https://neon.tech/doc In the setup flow, Inngest will set up the users, roles and configure your database correctly. Each command that Inngest executes is visible for complete transparency. If you prefer a more hands-on approach with database administration, you can choose the manual setup, where you execute each command yourself. Throughout the process, you'll receive additional context and links to resources explaining what each command does. -### TODO PLACEHOLDER - Link to docs + ### What will you build?