You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
426 B
Python
19 lines
426 B
Python
# -*- coding: utf-8 -*-
|
|
|
|
INSTALLED_ADDONS = [
|
|
# <INSTALLED_ADDONS> # Warning: text inside the INSTALLED_ADDONS tags is auto-generated. Manual changes will be overwritten.
|
|
'aldryn-django',
|
|
'aldryn-sso',
|
|
# </INSTALLED_ADDONS>
|
|
]
|
|
|
|
import aldryn_addons.settings
|
|
aldryn_addons.settings.load(locals())
|
|
|
|
|
|
# all django settings can be altered here
|
|
|
|
INSTALLED_APPS.extend([
|
|
# add your project specific apps here
|
|
])
|