Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 08cea3e

Browse files
committedSep 24, 2024·
Readme updates: backend database agnostic
1 parent 411bf13 commit 08cea3e

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed
 

‎README.md

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<a href="https://www.powersync.com" target="_blank"><img src="https://github.com/powersync-ja/.github/assets/7372448/d2538c43-c1a0-4c47-9a76-41462dba484f"/></a>
33
</p>
44

5-
*[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.*
5+
*[PowerSync](https://www.powersync.com) is a sync engine for building local-first apps with instantly-responsive UI/UX and simplified state transfer.*
66

77
# PowerSync Kotlin Multiplatform SDK
88

@@ -23,11 +23,10 @@ our [community Discord](https://discord.gg/powersync) - we'd love to hear from y
2323

2424
- [connectors](./connectors/)
2525

26-
- [SupabaseConnector.kt](./connectors/supabase/src/commonMain/kotlin/com/powersync/connector/supabase/SupabaseConnector.kt) An example connector implementation tailed for Supabase. The backend
27-
connector provides
28-
the connection between your application backend and the PowerSync managed database. It is used to:
26+
- [SupabaseConnector.kt](./connectors/supabase/src/commonMain/kotlin/com/powersync/connector/supabase/SupabaseConnector.kt) An example connector implementation for Supabase (Postgres). The backend
27+
connector provides the connection between your application backend and the PowerSync managed database. It is used to:
2928
1. Retrieve a token to connect to the PowerSync service.
30-
2. Apply local changes on your backend application server (and from there, to Postgres).
29+
2. Apply local changes on your backend application server (and from there, to your backend database).
3130

3231
## Demo Apps / Example Projects
3332

‎connectors/README.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,15 @@
11
# PowerSync Backend Connectors
22

3-
Convenience implementations of backend connectors that provides the connection between your application backend and the PowerSync managed database.
3+
Convenience implementations of backend connectors that provide the connection between your application backend and the PowerSync managed database.
44

55
It is used to:
66
1. Retrieve a token to connect to the PowerSync service.
7-
2. Apply local changes on your backend application server (and from there, to Postgres).
7+
2. Apply local changes on your backend application server (and from there, to your backend database).
88

9-
## Supported Connectors
109

11-
### Supabase
10+
## Provided Connectors
11+
12+
### Supabase (Postgres)
1213

1314
A basic implementation of a PowerSync Backend Connector for Supabase, that serves as getting started example.
1415

0 commit comments

Comments
 (0)
Please sign in to comment.