Admin settings
Introduction
Admin settings can be found by clicking the settings button on sidebar and can be used for Updating the system settings or changing the password.
Updating the system settings
System setting is represented in the form of JSON on the editor. These JSON values can be updated accordingly.
System settings keys
Key | Default | Description |
---|---|---|
dbTimeout | 5 | The time in seconds to wait on DB Lock when opening an already open database. 0 will make it wait indefinitely. |
maxLinesPerRecord | 200 | Determines the maximum number of lines allowed in a single record. |
separateSymbols | false | Determines whether to not include special characters in word boundary |
useCache | true | Determines whether to use caching or not. |
authExpiryTime | 0 | The duration to keep the authentication token valid. The authentication will expire after the specified duration. The duration string is a sequence of decimal numbers and a unit suffix, such as 300s , 1.5h or 2h45m . Valid time units are ns , us (or µs ), ms , s , m , h |
Advanced: Updating system settings manually
System settings can be updated manually by creating/ editing the config.json
file on the root of the data directory
example
{
"dbTimeout": 5,
"maxLinesPerRecord": 200,
"separateSymbols": true,
"useCache": true
}
note
If a single key-value input is given, then the system will only update that corresponding key value leaving the other keys.
All invalid keys shall be discarded.
Changing password
Steps involved in changing the password
Enter the old password
🠊 Enter the new password
🠊 Confirm the new password
🠊 Change password
note
Currently the old password
and the new password
is required for changing the password
.