iosfu/iosfu/conf.py

16 lines
264 B
Python
Raw Permalink Normal View History

2013-11-18 21:59:05 +00:00
from os import getcwd
from os.path import join as join_paths
# Main
ROOT_PATH = getcwd()
# Backups folder name
BACKUPS_PATH = join_paths(ROOT_PATH, '_backups')
# Backup default settings
BACKUP_DEFAULT_SETTINGS = {
"cache.enabled": False,
"cache": {}
}