Storage
monodit tracks storage usage across several categories. Usage is visible in the Data tab of your account.
See Plans for storage included with each account plan and available Storage Plus add-ons.
What counts toward storage
| Category | What it covers |
|---|---|
| Workspace schema | Dashboard layout and configuration data, including per-widget ctx.storage state |
| Source code | Custom widget and theme source code (HTML, CSS, JS) |
| Imported widgets | Raw manifest data for imported widgets |
| Imported themes | Raw manifest data for imported themes |
| Dit history | Saved Dit conversation sessions |
| Widget data | Text bucket contents written by widgets via ctx.store |
| Uploaded assets | Files uploaded by widgets via ctx.assets |
ctx.cache is browser-local and does not count toward storage.
Buckets
Widgets can declare buckets to persist data server-side. Two types are available:
- Text buckets — D1-based. Used for structured JSON data via
ctx.store. Counts toward the widget data category. - Asset buckets — R2-based. Used for binary file uploads via
ctx.assets. Counts toward the uploaded assets category.
Each widget can attach buckets matching its declared schema. Bucket data is deleted immediately and permanently if the bucket is deleted.