How to change the location of the secret key?
The secret key can be stored at any path accessible to the app — for example,
a network folder, USB drive, or any local directory. To change the default
location, update the SECRET_KEY_PATH variable in the .env file,
move the secret key to the new path and restart the app.
How to restore the secret key?
It cannot be restored if lost. Make sure you have a copy of the secret key stored
in a safe place — losing it means losing access to all data.
How to migrate data between apps?
To migrate data, you'll need two things: the encrypted data (volume hidden-data),
and the secret key (volume hidden-secret).
Copy the contents of both volumes to a new place and restart the app.
How to integrate the app in existing workflow?
The app provides a public HTTP API and complete documentation.
You can use the API to create, read, update, and delete data, manage files, or trigger specific operations from external systems.
Integration can be performed using any language or tool that supports HTTP requests.