Hide config directory
This commit is contained in:
parent
d514919b62
commit
52f09a481a
1 changed files with 2 additions and 2 deletions
|
@ -2,10 +2,10 @@ import os
|
|||
|
||||
# Core Directories
|
||||
BASE_DIR = os.path.dirname(os.path.abspath(__file__))
|
||||
DATA_DIR = os.path.expanduser("~/dfa/")
|
||||
DATA_DIR = os.path.expanduser("~/.dfa/")
|
||||
|
||||
# Config
|
||||
USER_CONFIG_DIR = os.path.join(DATA_DIR, ".dfa.yml")
|
||||
USER_CONFIG_DIR = os.path.join(DATA_DIR, "dfa.yml")
|
||||
DEFAULT_CONFIG_DIR = os.path.join(BASE_DIR, 'defaults.yml')
|
||||
REQUIRED_KEYS = ['public_repo']
|
||||
|
||||
|
|
Reference in a new issue