Back to settings

Backups

Download a full database dump anytime.

Manual backup

Generates a gzipped pg_dump of your whole database and downloads it to your browser. Large workspaces may take a minute.

Last manual backup

Never — download one now

Workspace export (JSON)

A single JSON document of every tenant-scoped record (contacts, deals, pipelines, workflows, sequences, etc.). Use it for snapshots before bulk operations, migration between installs, or to check your workspace state into git.

Excludes users, auth tokens, audit logs, and security settings. Attachments are referenced by URL, not bundled.

For production, schedule automated backups

Manual downloads are great for ad-hoc snapshots, but you should also run a daily cron on your host:

docker compose -f docker-compose.customer.yml exec postgres \
  pg_dump -U mvnoalliance mvnoalliance | gzip > backup-$(date +%F).sql.gz

See docs/install/README.md § 7 → Backups for the full setup including S3 upload and rotation.