diff options
author | parth | 2012-06-01 15:03:13 +0530 |
---|---|---|
committer | parth | 2012-06-01 15:03:13 +0530 |
commit | 2113f66de743877597d24e20df9ac1e828167277 (patch) | |
tree | 77b21ff4414d440aaa672377de796f818b9993c8 /stapp/development.py | |
download | stproject-2113f66de743877597d24e20df9ac1e828167277.tar.gz stproject-2113f66de743877597d24e20df9ac1e828167277.tar.bz2 stproject-2113f66de743877597d24e20df9ac1e828167277.zip |
Restart of project. Most of the changes have been done by @Jayparikh111
Diffstat (limited to 'stapp/development.py')
-rw-r--r-- | stapp/development.py | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/stapp/development.py b/stapp/development.py new file mode 100644 index 0000000..b865a6c --- /dev/null +++ b/stapp/development.py @@ -0,0 +1,15 @@ + +from stapp.settings import * +DEBUG=True +TEMPLATE_DEBUG=DEBUG + +MIDDLEWARE_CLASSES += ( + 'debug_toolbar.middleware.DebugToolbarMiddleware', +) + +INSTALLED_APPS += ( + + 'debug_toolbar', +) + +INTERNAL_IPS = ('127.0.0.1',) |