Dashboard + UI enhancements

This commit is contained in:
simon987
2018-04-21 17:04:53 -04:00
parent 87f35571fa
commit 6b754b4bb4
11 changed files with 242 additions and 336 deletions

View File

@@ -1,6 +1,7 @@
# Do not change option names
default_options = {
"ThumbnailQuality": "85",
"ThumbnailSize": "275",
"ThumbnailSize": "272",
"ThumbnailColor": "FF00FF",
"TextFileContentLength": "2000",
"PdfFileContentLength": "2000",
@@ -11,7 +12,17 @@ default_options = {
"FileParsers": "media, text, picture, font, pdf, docx, spreadsheet, ebook"
}
# Index documents after every X parsed files (Larger number will use more memory)
index_every = 10000
# See https://www.elastic.co/guide/en/elasticsearch/reference/current/analysis-ngram-tokenizer.html#_configuration_16
nGramMin = 3
nGramMax = 3
elasticsearch_url = "http://localhost:9200"
# Password hashing
bcrypt_rounds = 14
# sqlite3 database path
db_path = "./local_storage.db"
VERSION = "1.0a"