Skip to content
Snippets Groups Projects
Commit c5d534a0 authored by Fredrik Jonsson's avatar Fredrik Jonsson
Browse files

Disable TimerPanel in debug panel by default as well. Minor additions to local example settings.

parent ec1873d0
No related branches found
No related tags found
No related merge requests found
......@@ -126,6 +126,7 @@ if DEBUG:
DEBUG_TOOLBAR_CONFIG = {
"DISABLE_PANELS": {
'debug_toolbar.panels.versions.VersionsPanel',
'debug_toolbar.panels.timer.TimerPanel',
'debug_toolbar.panels.settings.SettingsPanel',
'debug_toolbar.panels.headers.HeadersPanel',
'debug_toolbar.panels.request.RequestPanel',
......@@ -141,7 +142,6 @@ DEBUG_TOOLBAR_CONFIG = {
"SHOW_COLLAPSED": True,
}
WEBPACK_LOADER['DEFAULT'].update({
'STATS_FILE': os.path.join(BASE_DIR, './opentech/static_compiled/app/webpack-stats.json'),
})
......@@ -7,22 +7,25 @@ CACHES = {
}
}
# ALLOWED_HOSTS = ['apply.otf.test', 'otf.test', 'apply.hypha.test', 'hypha.test', '127.0.0.1']
# BASE_URL = 'http://otf.test'
# Turn off DEBUG mode.
# DEBUG = False
# Write log to local file.
# LOCAL_FILE_LOGGING = True
# Write e-mails to local files.
# LOCAL_FILE_EMAIL = True
# On staging, uncomment the following to enable the styleguide
# Enable the styleguide.
# ENABLE_STYLEGUIDE = True
# ALLOWED_HOSTS = ['apply.otf.test', 'otf.test', '127.0.0.1']
# BASE_URL = 'http://otf.test'
# SECRET_KEY = 'CHANGEME!!!'
# Enable Wagtail Cache while developing
# Enable Wagtail Cache.
# WAGTAIL_CACHE = True
# If you have a problem with "CSRF cookie not set".
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment