diff options
author | parth | 2011-12-09 04:05:26 +0530 |
---|---|---|
committer | parth | 2011-12-09 04:05:26 +0530 |
commit | 5d600ad389d50832fac95e7ac381d4eba7ee70ba (patch) | |
tree | 021b65882be403e58e832305c0ba64ab2653f95a /buildout.cfg | |
parent | 861d2cc5e36835f60bace61a919e73b4bd27274b (diff) | |
download | online_test-5d600ad389d50832fac95e7ac381d4eba7ee70ba.tar.gz online_test-5d600ad389d50832fac95e7ac381d4eba7ee70ba.tar.bz2 online_test-5d600ad389d50832fac95e7ac381d4eba7ee70ba.zip |
Added bootstrap and buildout
Diffstat (limited to 'buildout.cfg')
-rw-r--r-- | buildout.cfg | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/buildout.cfg b/buildout.cfg new file mode 100644 index 0000000..8d62fa5 --- /dev/null +++ b/buildout.cfg @@ -0,0 +1,21 @@ +[buildout] +parts = + django +eggs = + PIL + South + Werkzeug + +[versions] +django = 1.3 + +[django] +recipe = djangorecipe +project = testapp +settings = settings +wsgi = true +wsgilog=wsgi.log +eggs = + ${buildout:eggs} +extra-paths = + testapp |