Project for the UPV to develop an app like BlaBlaCar but only for UPV people.
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

debug toolbar

+15
+15
upvcarshare/config/settings/production.py
··· 24 24 } 25 25 DATABASES['default']['PORT'] = str(DATABASES['default']['PORT']) # Fix a problem with Oracle connector 26 26 DATABASES['default']['ATOMIC_REQUESTS'] = True 27 + 28 + 29 + # DJANGO DEBUG TOOLBAR 30 + # ------------------------------------------------------------------------------ 31 + MIDDLEWARE += ('debug_toolbar.middleware.DebugToolbarMiddleware',) 32 + INSTALLED_APPS += ('debug_toolbar', ) 33 + 34 + INTERNAL_IPS = ['127.0.0.1', '10.0.2.2', 'carsdes.cc.upv.es'] 35 + 36 + DEBUG_TOOLBAR_CONFIG = { 37 + 'DISABLE_PANELS': [ 38 + 'debug_toolbar.panels.redirects.RedirectsPanel', 39 + ], 40 + 'SHOW_TEMPLATE_CONTEXT': True, 41 + }