{% extends "_base.html" %} {% set active = 'settings' %} {% block title %}trovex — settings{% endblock %} {% block head %} {% endblock %} {% block content %}

Settings

local operator console · store health · auth · backups
docs
{{ "{:,}".format(doc_count) }}
chunks
{{ "{:,}".format(chunk_count) }}
db size
{{ (db_size / 1048576) | round(1) }} MB
write auth
{% if auth_on %} required {% else %} open {% endif %}
01

Authorization

localStorage · this browser only

Write token

Required to delete, tag, or back up from this UI. Paste the token this trovex instance was started with.
Stored locally, never transmitted to anyone but trovex. The token is kept in this browser's localStorage and sent only as the X-TROVEX-Write-Token header on write requests to your local instance. Clearing the field and saving removes it. On a shared machine, clear it when you're done.
02

Maintenance

store-level actions
Reindex sources
Re-scan project sources and refresh the canonical store. Safe to run anytime.

Snapshot the database
Write a point-in-time backup of trovex.db. Requires the write token above.

03

Backups

last {{ backups | length }} · keeps 7
{% if backups %}
{% for b in backups %} {% endfor %}
filesize
{{ b.name }} {{ (b.size_bytes / 1048576) | round(1) }} MB
{% else %}
No backups yet
Run Backup now above to write the first snapshot.
{% endif %}
{% endblock %}