anaconda / ae5-tools

A command-line tool for scripting AE5 actions
https://www.anaconda.com/enterprise/
BSD 3-Clause "New" or "Revised" License
9 stars 8 forks source link

replace all mentions of ~/.ae5 outside of config.py #100

Open bkreider opened 4 years ago

bkreider commented 4 years ago

This should just ask the config._path for the proper path to root these things under.

Probably add:

cli/main.py:    click_repl.repl(ctx, prompt_kwargs={'history': FileHistory(os.path.expanduser('~/.ae5/history'))})
config.py:        self._path = os.path.expanduser(os.getenv('AE5_TOOLS_CONFIG_DIR') or '~/.ae5')
docker.py:    2. ~/.ae5/condarc
docker.py:    _path = path.expanduser(os.getenv('AE5_TOOLS_CONFIG_DIR') or '~/.ae5')
docker.py:    2. ~/.ae5/Dockerfile
docker.py:    _path = path.expanduser(os.getenv('AE5_TOOLS_CONFIG_DIR') or '~/.ae5')