Metadata
Files and folder can be enriched with metadata and displayed. Metadata is stored in a file called <name>.dbmeta.json, where <name> is the exact file (including extension) or folder name. Put it in the same folder as the target file or folder. Metadata is stored in a JSON format specified below.
The *.dbmeta.json files are hidden from the user and cannot be viewed.
{
"description": "A short project description ⭐",
"labels": ["danger:Laravel", "primary:PHP 8", "dark:Hot 🔥"],
"hidden": false,
"password": "mysecurepassword"
}
Properties
Description
A short description of the file or folder. This is displayed in the file tree.
Default is empty.
Labels
Labels always start with a style and a colon :, followed by the label text. The following styles are available:
primarysecondarysuccessdangerwarninginfolightdark
Default is empty.
Hidden
If set to true, the file or folder is hidden from the file tree. However, it can still be accessed by URL directly. Can be combined with password protection.
Default is
false.
Password
See Password Protection.
Default is empty.