Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .env.template
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# Connections for tests
MONGO_TEST_UR="mongodb://localhost:27017/powersync_test"
MONGO_TEST_URL="mongodb://localhost:27017/powersync_test"
PG_TEST_URL="postgres://postgres:postgres@localhost:5432/powersync_test"
4 changes: 2 additions & 2 deletions DEVELOP.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ pnpm build

The PowerSync service requires Postgres and MongoDB server connections. These configuration details can be specified in a `powersync.yaml` (or JSON) configuration file.

See the [Self hosting demo](https://github.com/powersync-ja/self-host-demo) for demos of starting these services.
See the [self-hosting demo](https://github.com/powersync-ja/self-host-demo) for demos of starting these services.

A quick method for running all required services with a handy backend and frontend is to run the following in a checked-out `self-host-demo` folder.

Expand Down Expand Up @@ -65,7 +65,7 @@ Some tests for these packages require a connection to MongoDB and Postgres. Conn
These can be set in a terminal/shell

```bash
export MONGO_TEST_UR="mongodb://localhost:27017/powersync_test"
export MONGO_TEST_URL="mongodb://localhost:27017/powersync_test"
export PG_TEST_URL="postgres://postgres:postgres@localhost:5432/powersync_test"
```

Expand Down
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@
<a href="https://www.powersync.com" target="_blank"><img src="https://github.com/powersync-ja/.github/assets/7372448/d2538c43-c1a0-4c47-9a76-41462dba484f"/></a>
</p>

_[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. Syncs between SQLite on the client-side and Postgres or MongoDB on the server-side (MySQL coming soon).*

# PowerSync Service

`powersync-service` is the monorepo for the core [PowerSync service](https://docs.powersync.com/architecture/powersync-service).
`powersync-service` is the monorepo for the core [PowerSync Service](https://docs.powersync.com/architecture/powersync-service).

The service can be started using the public Docker image. See the image [notes](./service/README.md)

Expand All @@ -19,7 +19,7 @@ The service can be started using the public Docker image. See the image [notes](

- [packages/jpgwire](./packages/jpgwire/README.md)

- Customized version of [pgwire](https://www.npmjs.com/package/pgwire?activeTab=dependencies)
- Customized version of [pgwire](https://www.npmjs.com/package/pgwire?activeTab=dependencies) (used with Postgres)

- [packages/jsonbig](./packages/jsonbig/README.md)

Expand All @@ -33,8 +33,8 @@ The service can be started using the public Docker image. See the image [notes](

- Library containing logic for PowerSync sync rules

- [packages/types](./packages/types/README.md)
- Type definitions for the PowerSync service
- [packages/types](./packages/types/)
- Type definitions for the PowerSync Service

## Libraries

Expand All @@ -46,7 +46,7 @@ The service can be started using the public Docker image. See the image [notes](

- [service](./service/README.md)

Contains the PowerSync service code. This project is used to build the `journeyapps/powersync-service` Docker image.
Contains the PowerSync Service code. This project is used to build the `journeyapps/powersync-service` Docker image.

## Docs

Expand Down
2 changes: 1 addition & 1 deletion service/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<a href="https://www.powersync.com" target="_blank"><img src="https://github.com/powersync-ja/.github/assets/7372448/d2538c43-c1a0-4c47-9a76-41462dba484f"/></a>
</p>

*[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. Syncs between SQLite on the client-side and Postgres or MongoDB on the server-side (MySQL coming soon).*

# Quick reference

Expand Down
2 changes: 1 addition & 1 deletion test-client/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Test Client

This is a minimal client demonstrating direct usage of the HTTP stream sync api.
This is a minimal client demonstrating direct usage of the HTTP stream sync API.

For a full implementation, see our client SDKs.

Expand Down
Loading