Dexie Logo
Documentation

Add demo users

Use the dexie-cloud CLI to import demo users as follows:
  1. Use npx dexie-cloud databases to verify you are connected to the correct DB. If not, use npx dexie-cloud connect to connect to it. If you have no DB, use npx dexie-cloud create to create one.
  2. Create a JSON file 'demoUsers.json':
    {
      "demoUsers": {
        "alice@demo.local": {},
        "bob@demo.local": {}
      }
    }
    
  3. Import the file
    npx dexie-cloud import demoUsers.json
    

List current demo users

  1. npx dexie-cloud export --demoUsers demoUsers.json
  2. Open demoUsers.json

Delete demo users

  1. npx dexie-cloud export --demoUsers demoUsers.json
  2. Edit demoUsers.json:
    {
      "demoUsers": {
        "alice@demo.local": null,
        "bob@demo.local": null
      }
    }
    
  3. npx dexie-cloud import demoUsers.json

© 2014-2025 Awarica AB

Made with love for great people.

Read Terms & Conditions and Privacy Policy.