isp-maintenance/mgrctl/settings/general.py

15 lines
310 B
Python
Raw Normal View History

import pathlib
# Build paths inside the project like this: BASE_DIR / 'subdir'.
BASE_DIR = pathlib.Path(__file__).resolve().parent.parent
INSTALLED_APPS = {
'vm6': {
'auth': 'mgrctl.apps.vm6.auth.commands.cli',
},
'dci6': {
'auth': 'mgrctl.apps.dci6.auth.commands.cli',
},
}