dexie-cloud-addon 4.1.0-beta.32 → 4.1.0-beta.34

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -2,25 +2,27 @@
2
2
 
3
3
  This library is an addon for Dexie.js that works as the sync client for Dexie Cloud. See https://dexie.org/cloud/
4
4
 
5
- # Hackathon 3-5 January 2025
5
+ # Getting started
6
6
 
7
+ To start using Dexie Cloud, create a database in the cloud
8
+
9
+ ```
10
+ npx dexie-cloud create
7
11
  ```
8
12
 
9
- /$$ /$$ /$$ /$$ /$$
10
- | $$ | $$ | $$ | $$ | $$
11
- | $$ | $$ /$$$$$$ /$$$$$$$| $$ /$$ /$$$$$$ /$$$$$$ | $$$$$$$ /$$$$$$ /$$$$$$$
12
- | $$$$$$$$ |____ $$ /$$_____/| $$ /$$/ |____ $$|_ $$_/ | $$__ $$ /$$__ $$| $$__ $$
13
- | $$__ $$ /$$$$$$$| $$ | $$$$$$/ /$$$$$$$ | $$ | $$ \ $$| $$ \ $$| $$ \ $$
14
- | $$ | $$ /$$__ $$| $$ | $$_ $$ /$$__ $$ | $$ /$$| $$ | $$| $$ | $$| $$ | $$
15
- | $$ | $$| $$$$$$$| $$$$$$$| $$ \ $$| $$$$$$$ | $$$$/| $$ | $$| $$$$$$/| $$ | $$
16
- |__/ |__/ \_______/ \_______/|__/ \__/ \_______/ \___/ |__/ |__/ \______/ |__/ |__/
13
+ Then follow the instructions on https://dexie.org/cloud/#getting-started
17
14
 
18
- 🌟 Welcomne to Dexie.js Hackathon! 🌟
19
- 📅 Date: January 3, 2025
20
- 🕒 Start coding with Dexie Cloud and win prices!
15
+ ## The Cloud Service
21
16
 
22
- For more information: https://dexie.com/hackathon
17
+ [![Better Stack Badge](https://uptime.betterstack.com/status-badges/v2/monitor/jist.svg)](https://uptime.betterstack.com/?utm_source=status_badge)
23
18
 
24
- Good luck! 🚀`
19
+ The official production service for Dexie Cloud Server is forever free of charge so you do not need to install any server to get started. The free service has some limits, see https://dexie.org/cloud/pricing
20
+
21
+ ## On-Prem version
22
+
23
+ Dexie Cloud Server is a closed source software that can be purchased and installed on own hardware, see [On-Prem Silver / On-Prem Gold](https://dexie.org/cloud/pricing)
24
+
25
+ ## Dexie Cloud CLI
26
+
27
+ See https://dexie.org/cloud/docs/cli
25
28
 
26
- ```
@@ -8,7 +8,7 @@
8
8
  *
9
9
  * ==========================================================================
10
10
  *
11
- * Version 4.1.0-beta.32, Thu Dec 05 2024
11
+ * Version 4.1.0-beta.34, Fri Dec 06 2024
12
12
  *
13
13
  * https://dexie.org
14
14
  *
@@ -8157,7 +8157,7 @@ function dexieCloud(dexie) {
8157
8157
  const syncComplete = new Subject();
8158
8158
  dexie.cloud = {
8159
8159
  // @ts-ignore
8160
- version: "4.1.0-beta.32",
8160
+ version: "4.1.0-beta.34",
8161
8161
  options: Object.assign({}, DEFAULT_OPTIONS),
8162
8162
  schema: null,
8163
8163
  get currentUserId() {
@@ -8475,7 +8475,7 @@ function dexieCloud(dexie) {
8475
8475
  }
8476
8476
  }
8477
8477
  // @ts-ignore
8478
- dexieCloud.version = "4.1.0-beta.32";
8478
+ dexieCloud.version = "4.1.0-beta.34";
8479
8479
  Dexie.Cloud = dexieCloud;
8480
8480
 
8481
8481
  const ydocTriggers = {};