combo/debian/debian_config.py

22 lines
388 B
Python

# This file is sourced by "execfile" from combo.settings
import os
PROJECT_NAME = 'combo'
# SAML2 authentication
INSTALLED_APPS += ('mellon',)
#
# hobotization (multitenant)
#
execfile('/usr/lib/hobo/debian_config_common.py')
# add custom hobo agent module
INSTALLED_APPS = ('hobo.agent.combo', ) + INSTALLED_APPS
#
# local settings
#
execfile(os.path.join(ETC_DIR, 'settings.py'))