addons/dexie-cloud/README.md
The web client for Dexie Cloud.
npm install dexie@latest
npm install dexie-cloud-addon@latest
import { Dexie } from 'dexie';
import dexieCloud from 'dexie-cloud-addon';
const db = new Dexie('dbname', { addons: [dexieCloud]});
db.version(1).stores({
yourTable: '@primKeyProp, indexedProp1, indexedProp2, ...'
});
db.cloud.configure({
databaseUrl: 'https://<yourdb>.dexie.cloud'
})
https://dexie.org/cloud/docs/dexie-cloud-addon#api
Run the following command in a console / terminal:
npx dexie-cloud create
See also https://dexie.org/cloud/#getting-started
Having problems getting started, please file an issue
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
Dexie Cloud Server is a closed source software that can be purchased and installed on own hardware, see On-Prem Silver / On-Prem Gold
See https://dexie.org/cloud/docs/cli