add example config

master
Nicolò Balzarotti 2018-08-20 11:27:52 +02:00
parent 28911accee
commit 999d0f21c5
1 changed files with 25 additions and 0 deletions

25
src/config.py Normal file
View File

@ -0,0 +1,25 @@
# TODO: provide a way to compress data like:
# tar -c --lzma queue -f queue.tar.lzma
# propose it when we have many many files taking a relatively "small" space
# Like: 1296 files taking 5Mb -> compressed in 1 file, 55Kb
watched_dirs = [
"~/memories/",
"~/org/",
"~/PhD/"
]
# No trailing slash
excluded_dirs = [
]
# No slashes
excluded_dir_names = [
".git",
".julia_pkgs"
]
maxmimum_file_number = 20
verbosity = 1