welco/debian/debian_config.py

22 lines
421 B
Python

# This file is sourced by "exec(open(..." from welco.settings
import os
PROJECT_NAME = 'welco'
# SAML2 authentication
INSTALLED_APPS += ('mellon',)
#
# hobotization (multitenant)
#
exec(open('/usr/lib/hobo/debian_config_common.py').read())
#
# local settings
#
exec(open(os.path.join(ETC_DIR, 'settings.py')).read())
# run additional settings snippets
exec(open('/usr/lib/hobo/debian_config_settings_d.py').read())