{% extends "base.html" %} {% import "partials/macros.html" as m %} {% block title %}Backup & Restore -- ProducerOS{% endblock %} {% block page_heading %}Backup & Restore{% endblock %} {% block content %}

Backups copy your ProducerOS database (projects, rights, releases, everything except audio files themselves -- those stay on disk and are referenced by path). Restoring always makes a safety copy of your current database first.

Export metadata (JSON) Export audio-path manifest

Backup history

{% for b in backups %}
{{ b.created_at.strftime("%Y-%m-%d %H:%M") }} UTC · {{ (b.size_bytes / 1024 / 1024)|round(2) }} MB {% if b.verified %}{{ m.checklist_badge("passed") }}{% else %}Not verified{% endif %}
{% else %}

No backups yet.

{% endfor %}
{% endblock %}