From 72cb45de7f80938f6d407fcd67114b4e8fec72e0 Mon Sep 17 00:00:00 2001 From: Jake Barnby Date: Thu, 10 Sep 2026 20:39:16 -0700 Subject: [PATCH 1/2] docs: add Appwrite managed PostgreSQL to Awesome Sequelize resources --- docs/other-topics/resources.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/docs/other-topics/resources.md b/docs/other-topics/resources.md index cdc84ffd1..566efdd6c 100644 --- a/docs/other-topics/resources.md +++ b/docs/other-topics/resources.md @@ -33,6 +33,10 @@ A curated list of awesome projects surrounding Sequelize. - [sequelize-mig](https://github.com/MRVMV/sequelize-mig) - Sequelize migration generator - [sequelizemm](https://github.com/hasinoorit/sequelizemm) - CLI tool to generate a migration script from models +## Managed databases + +- [Appwrite managed PostgreSQL](https://appwrite.io/docs/products/databases/postgresql/integrations/sequelize) - Guide for connecting Sequelize to Appwrite managed Postgres (standard postgres dialect, TLS). + ## Miscellaneous - [sequelize-pg-utilities](https://github.com/davesag/sequelize-pg-utilities) - Opinionated set of database utilities. From bc6cb2d3cc98932519ee19dec4808113fb4511dc Mon Sep 17 00:00:00 2001 From: Jake Barnby Date: Tue, 22 Sep 2026 13:14:34 +1200 Subject: [PATCH 2/2] docs: point the Appwrite resource at the live Node.js drivers guide The Sequelize-specific integration page does not exist on appwrite.io yet (404), so link the published Node.js drivers page instead, which covers the node-postgres connection Sequelize uses for its postgres dialect. Co-Authored-By: Claude Fable 5.1 --- docs/other-topics/resources.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/other-topics/resources.md b/docs/other-topics/resources.md index 566efdd6c..5b0574549 100644 --- a/docs/other-topics/resources.md +++ b/docs/other-topics/resources.md @@ -35,7 +35,7 @@ A curated list of awesome projects surrounding Sequelize. ## Managed databases -- [Appwrite managed PostgreSQL](https://appwrite.io/docs/products/databases/postgresql/integrations/sequelize) - Guide for connecting Sequelize to Appwrite managed Postgres (standard postgres dialect, TLS). +- [Appwrite managed PostgreSQL](https://appwrite.io/docs/products/databases/postgresql/integrations/drivers) - Node.js driver guide for Appwrite managed Postgres; Sequelize connects through the standard `postgres` dialect (node-postgres) with TLS. ## Miscellaneous