This repository has been archived on 2023-02-21. You can view files and clone it, but cannot push or open issues or pull requests.
corbo/debian/debian_config.py

24 lines
447 B
Python

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