diff --git a/README.md b/README.md index 3da4b497..e594fbbe 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@

-*[PowerSync](https://www.powersync.com) is a Postgres-SQLite sync engine, which helps developers to create local-first real-time reactive apps that work seamlessly both online and offline.* +*[PowerSync](https://www.powersync.com) is a sync engine for building local-first apps with instantly-responsive UI/UX and simplified state transfer.* # PowerSync Kotlin Multiplatform SDK @@ -23,11 +23,10 @@ our [community Discord](https://discord.gg/powersync) - we'd love to hear from y - [connectors](./connectors/) - - [SupabaseConnector.kt](./connectors/supabase/src/commonMain/kotlin/com/powersync/connector/supabase/SupabaseConnector.kt) An example connector implementation tailed for Supabase. The backend - connector provides - the connection between your application backend and the PowerSync managed database. It is used to: + - [SupabaseConnector.kt](./connectors/supabase/src/commonMain/kotlin/com/powersync/connector/supabase/SupabaseConnector.kt) An example connector implementation for Supabase (Postgres). The backend + connector provides the connection between your application backend and the PowerSync managed database. It is used to: 1. Retrieve a token to connect to the PowerSync service. - 2. Apply local changes on your backend application server (and from there, to Postgres). + 2. Apply local changes on your backend application server (and from there, to your backend database). ## Demo Apps / Example Projects diff --git a/connectors/README.md b/connectors/README.md index 912d35ac..0c9a09c4 100644 --- a/connectors/README.md +++ b/connectors/README.md @@ -1,14 +1,15 @@ # PowerSync Backend Connectors -Convenience implementations of backend connectors that provides the connection between your application backend and the PowerSync managed database. +Convenience implementations of backend connectors that provide the connection between your application backend and the PowerSync managed database. It is used to: 1. Retrieve a token to connect to the PowerSync service. -2. Apply local changes on your backend application server (and from there, to Postgres). +2. Apply local changes on your backend application server (and from there, to your backend database). -## Supported Connectors -### Supabase +## Provided Connectors + +### Supabase (Postgres) A basic implementation of a PowerSync Backend Connector for Supabase, that serves as getting started example.