Changeset - 7c5ca8d3993c
[Not reviewed]
0 1 0
Scott Bragg - 8 years ago 2016-06-29 13:22:46
jsbragg@scriptforge.org
settings.py allows local_settings.py to extend settings (used for Raven/Sentry config)
1 file changed with 3 insertions and 0 deletions:
0 comments (0 inline, 0 general)
pinaxcon/settings.py
Show inline comments
...
 
@@ -250,20 +250,23 @@ PROPOSAL_FORMS = {
 
WAGTAIL_SITE_NAME = 'linux.conf.au 2017'
 
WAGTAIL_APPEND_SLASH = True
 

	
 

	
 
ATTENDEE_PROFILE_FORM = "pinaxcon.registrasion.forms.ProfileForm"
 

	
 
# Use nose to run all tests
 
TEST_RUNNER = 'django_nose.NoseTestSuiteRunner'
 

	
 
# Tell nose to measure coverage on the 'foo' and 'bar' apps
 
NOSE_ARGS = [
 
    '--with-coverage',
 
    '--cover-package=registrasion.controllers,registrasion.models',
 
]
 

	
 
# Production settings have their own file to override stuff here
 
try:
 
    LOCAL_SETTINGS
 
except NameError:
 
    try:
 
        from local_settings import *
 
    except ImportError:
 
        pass
...
 
\ No newline at end of file
0 comments (0 inline, 0 general)