Merge pull request #156 from martinblech/django-extensions

Added django-extensions to local configuration
This commit is contained in:
Saurabh Kumar 2014-12-19 14:32:30 +05:30
commit a162aa4c98
3 changed files with 5 additions and 3 deletions

View File

@ -50,9 +50,9 @@ First make sure to create and activate a virtualenv_, then open a terminal at th
.. _virtualenv: http://docs.python-guide.org/en/latest/dev/virtualenvs/
You can now run the usual Django ``runserver`` command::
You can now run the ``runserver_plus`` command::
$ python {{cookiecutter.repo_name}}/manage.py runserver
$ python {{cookiecutter.repo_name}}/manage.py runserver_plus
The base app will run but you'll need to carry out a few steps to make the sign-up and login forms work. These are currently detailed in `issue #39`_.

View File

@ -2,6 +2,8 @@
-r base.txt
coverage==3.7.1
Sphinx
django-extensions==1.4.8
Werkzeug==0.9.6
# django-debug-toolbar that works with Django 1.5+
django-debug-toolbar==1.2.1

View File

@ -29,7 +29,7 @@ class Local(Common):
# django-debug-toolbar
MIDDLEWARE_CLASSES = Common.MIDDLEWARE_CLASSES + ('debug_toolbar.middleware.DebugToolbarMiddleware',)
INSTALLED_APPS += ('debug_toolbar',)
INSTALLED_APPS += ('debug_toolbar', 'django_extensions',)
INTERNAL_IPS = ('127.0.0.1', '10.0.2.2',)