> For the complete documentation index, see [llms.txt](https://docs.kinwall.family/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.kinwall.family/your-data/deleting-everything.md).

# Deleting everything

Kinwall has no in-app "delete my family" button. Your data lives wherever you deployed it, so you delete it there.

## Before you delete

* Optionally **Download export** (Settings → Access → Your data).
* Remove connected accounts in **Settings → Calendars** if you want Kinwall's access revoked at the provider. Removing a Google account revokes its token (best effort). For Microsoft and CalDAV, also revoke the app or app-specific password in your account settings.
* Delete [connected apps](/settings-reference/access.md#connected-apps) and API keys if the instance might keep running for a while.

Removing a calendar or account from Kinwall never deletes anything at Google, Outlook or iCloud.

## Docker / Node

```bash
docker rm -f kinwall
rm -rf ./data        # kinwall.sqlite + encryption.key
```

Delete any backups of `data/` too.

## Home Assistant add-on

Uninstall the add-on. Its `/data` is removed with it. Older Home Assistant backups still contain it.

## Cloudflare Workers

```bash
npx wrangler delete kinwall
npx wrangler d1 delete kinwall
```

Or delete the Worker and the D1 database in the dashboard. D1 Time Travel history goes with the database.

## Hosted by someone else

If your host set it up, **Settings → Access → Your data → Manage or delete this family** links to your host's page for this. Anything the host does on your instance shows up under [Hosting activity](/settings-reference/access.md#hosting-activity).


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://docs.kinwall.family/your-data/deleting-everything.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
