adding django-extensions helpers to manage.py
authorSeth Woodworth <seth@sethish.com>
Thu, 7 Feb 2013 19:51:10 +0000 (14:51 -0500)
committerSeth Woodworth <seth@sethish.com>
Thu, 7 Feb 2013 19:51:10 +0000 (14:51 -0500)
karmaworld/settings/dev.py
reqs/dev.txt

index 61ecc16299895806e767c0edbf1c5875e58f8a93..94b6cf1e5a3e96c4629f1877ad9687c12b01f40f 100644 (file)
@@ -39,8 +39,8 @@ DATABASES = {
 ########## END DATABASE CONFIGURATION
 
 ########## STATIC CONFIG
-# See: https://docs.djangoproject.com/en/dev/ref/settings/#static-url                                 
-STATIC_URL = '/static/'                                                                            
+# See: https://docs.djangoproject.com/en/dev/ref/settings/#static-url
+STATIC_URL = '/static/'
 # See: https://docs.djangoproject.com/en/dev/ref/settings/#static-root
 STATIC_ROOT = normpath(join(DJANGO_ROOT, 'static'))
 
@@ -56,6 +56,7 @@ CELERY_ALWAYS_EAGER = True
 # See: https://github.com/django-debug-toolbar/django-debug-toolbar#installation
 INSTALLED_APPS += (
     'debug_toolbar',
+    'django_extensions',
 )
 
 # See: https://github.com/django-debug-toolbar/django-debug-toolbar#installation
@@ -66,7 +67,7 @@ MIDDLEWARE_CLASSES += (
     'debug_toolbar.middleware.DebugToolbarMiddleware',
 )
 
-DEBUG_TOOLBAR_CONFIG = { 
+DEBUG_TOOLBAR_CONFIG = {
     'INTERCEPT_REDIRECTS': False # Don't interrput our redirects!
 }
 ########## END TOOLBAR CONFIGURATION
index 65b3c482399cb38da426b7e852d6e7e7f5bca8f7..9a932ef569db66e98defc598b3eeeee2ef8f2e48 100644 (file)
@@ -3,3 +3,4 @@ django-kombu==0.9.4
 django-debug-toolbar==0.9.4
 ipython==0.13.1
 ipdb==0.7
+django-extensions==1.0.3