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

21 lines
416 B
Python

# This file is sourced by "exec" from corbo.settings
import os
PROJECT_NAME = 'corbo'
#
# hobotization (multitenant)
#
exec(open('/usr/lib/hobo/debian_config_common.py').read())
INSTALLED_APPS = ('corbo.hobo_agent', ) + INSTALLED_APPS
#
# 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())