diff options
Diffstat (limited to 'patchtracker/Conf.py')
-rwxr-xr-x | patchtracker/Conf.py | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/patchtracker/Conf.py b/patchtracker/Conf.py index 954001e..448f595 100755 --- a/patchtracker/Conf.py +++ b/patchtracker/Conf.py @@ -22,6 +22,18 @@ pts_index_file = "pts-index.json.gz" by the PTS system """ +caching = True +""" Should caching be enabled? """ + +cachedir = "cache" +""" The location of the output cache directory. This directory contains + cached output from system commands or other nontrivial calculations + for faster and less resource intensive re-use +""" + +cachecompress = False +""" Should compression of cache data be enabled? """ + try: from localconfig import * except ImportError: |