mirror of
https://github.com/jazzband/django-authority.git
synced 2026-03-16 22:20:28 +00:00
Removed ipython and added django-extensions, django-debug-toolbar
This commit is contained in:
parent
fd6da1d129
commit
ea8f0168e8
2 changed files with 16 additions and 1 deletions
11
buildout.cfg
11
buildout.cfg
|
|
@ -2,15 +2,22 @@
|
|||
parts =
|
||||
python
|
||||
django
|
||||
django-debug-toolbar
|
||||
develop = .
|
||||
eggs =
|
||||
django-authority
|
||||
ipython
|
||||
django-extensions
|
||||
|
||||
[django-debug-toolbar]
|
||||
recipe=zerokspot.recipe.git
|
||||
repository=git://github.com/robhudson/django-debug-toolbar.git
|
||||
|
||||
[python]
|
||||
recipe = zc.recipe.egg
|
||||
interpreter = python
|
||||
eggs = ${buildout:eggs}
|
||||
extra-paths =
|
||||
${django-debug-toolbar:location}
|
||||
|
||||
[django]
|
||||
recipe = djangorecipe
|
||||
|
|
@ -18,3 +25,5 @@ version = trunk
|
|||
projectegg = example
|
||||
settings = development
|
||||
eggs = ${buildout:eggs}
|
||||
extra-paths =
|
||||
${django-debug-toolbar:location}
|
||||
|
|
@ -40,9 +40,13 @@ MIDDLEWARE_CLASSES = (
|
|||
'django.middleware.common.CommonMiddleware',
|
||||
'django.contrib.sessions.middleware.SessionMiddleware',
|
||||
'django.contrib.auth.middleware.AuthenticationMiddleware',
|
||||
'debug_toolbar.middleware.DebugToolbarMiddleware',
|
||||
'django.contrib.flatpages.middleware.FlatpageFallbackMiddleware',
|
||||
)
|
||||
|
||||
INTERNAL_IPS = ('127.0.0.1',)
|
||||
|
||||
|
||||
TEMPLATE_CONTEXT_PROCESSORS = (
|
||||
'django.core.context_processors.auth',
|
||||
'django.core.context_processors.debug',
|
||||
|
|
@ -64,6 +68,8 @@ INSTALLED_APPS = (
|
|||
'django.contrib.admin',
|
||||
'authority',
|
||||
'example.exampleapp',
|
||||
'debug_toolbar',
|
||||
'django_extensions',
|
||||
)
|
||||
|
||||
TEMPLATE_LOADERS = (
|
||||
|
|
|
|||
Loading…
Reference in a new issue