diff options
author | Madhusudan.C.S | 2011-02-02 03:53:48 +0530 |
---|---|---|
committer | Madhusudan.C.S | 2011-02-02 03:53:48 +0530 |
commit | deb5083e10a95d0a640708b0e2807d52c5ca9972 (patch) | |
tree | eda44c002a608a9d83fb5091078edace7c57acf8 | |
parent | e3cd88c5afc6bd5f5a252ae7331d0211d91d415f (diff) | |
download | pytask-deb5083e10a95d0a640708b0e2807d52c5ca9972.tar.gz pytask-deb5083e10a95d0a640708b0e2807d52c5ca9972.tar.bz2 pytask-deb5083e10a95d0a640708b0e2807d52c5ca9972.zip |
Add wsgi option and log file option.
-rw-r--r-- | .hgignore | 1 | ||||
-rw-r--r-- | buildout.cfg | 4 |
2 files changed, 4 insertions, 1 deletions
@@ -42,3 +42,4 @@ apache/* *.db-journal *.db migrations +wsgi.log diff --git a/buildout.cfg b/buildout.cfg index e0cf113..c4b4414 100644 --- a/buildout.cfg +++ b/buildout.cfg @@ -17,6 +17,8 @@ recipe = djangorecipe version = 1.2.4 project = pytask settings = settings +wsgi = true +wsgilog=wsgi.log eggs = ${buildout:eggs} pythonpath = @@ -33,7 +35,7 @@ urls = http://django-tagging.googlecode.com/svn/trunk/ . recipe = mercurialrecipe repository = https://bitbucket.org/jezdez/django-robots/ -[registration] +[registration]wsgilog recipe = mercurialrecipe repository = https://bitbucket.org/ubernostrum/django-registration/ |