authentic/local_settings.py.example

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

15 lines
227 B
Plaintext
Raw Normal View History

2013-04-23 15:02:07 +02:00
2015-02-13 15:14:05 +01:00
# To run you must set a secret key
SECRET_KEY = 'changeme'
2013-04-23 15:02:07 +02:00
2015-02-13 15:14:05 +01:00
# Activate SAML 2 idp
A2_IDP_SAML2_ENABLE = True
2013-04-23 15:02:07 +02:00
2015-02-13 15:14:05 +01:00
# Debugging helper
try:
import debug_toolbar
except ImportError:
2015-02-13 15:14:05 +01:00
pass
else:
2013-04-23 15:02:07 +02:00
INSTALLED_APPS += ('debug_toolbar',)