Skip to main content
During local development, all state is stored in the data directory. This directory mirrors the resource hierarchy, where organizations contain worlds, using the local filesystem.
```text
data/
├── identity.json         # Mock database for organizations and users
└── {org_id}/             # Root directory for a specific organization
    ├── registry.db       # Primary registry of worlds for the organization
    └── worlds/           # Isolated storage for each individual world
        └── {world_id}.db # Triples and embeddings for a specific world

## Resetting state

To wipe all local data and start fresh, delete the contents of the local
data directory.

## Modifying user data

To change the identity of your local user after initial setup, edit the
identity JSON configuration file directly.

```json
{
  "user": {
    "id": "admin",
    "email": "admin@wazoo.dev",
    "firstName": "System",
    "lastName": "Admin",
    "profilePictureUrl": null,
    "metadata": {
      "admin": "true"
    }
  },
  "organizations": []
}
```

The console reflects changes made to this file upon the next request.