diff options
author | parth | 2011-12-09 05:03:33 +0530 |
---|---|---|
committer | parth | 2011-12-09 05:03:33 +0530 |
commit | 43b84eb21c4aee9fcfd24aee09c8072a1b4885da (patch) | |
tree | 39d15b3b84f8e56148f9ac914d12373e61925b6f /production.cfg | |
parent | 6cde8b5c4bfcfa64f537dde395dacc44fda72bc7 (diff) | |
download | online_test-43b84eb21c4aee9fcfd24aee09c8072a1b4885da.tar.gz online_test-43b84eb21c4aee9fcfd24aee09c8072a1b4885da.tar.bz2 online_test-43b84eb21c4aee9fcfd24aee09c8072a1b4885da.zip |
Added separate production.cfg and production.py files for easy development
Diffstat (limited to 'production.cfg')
-rw-r--r-- | production.cfg | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/production.cfg b/production.cfg new file mode 100644 index 0000000..e3ee886 --- /dev/null +++ b/production.cfg @@ -0,0 +1,21 @@ +[buildout] +parts = + django +eggs = + PIL + South + MySQL-python + +[versions] +django = 1.3 + +[django] +recipe = djangorecipe +project = testapp +settings = production +wsgi = true +wsgilog=wsgi.log +eggs = + ${buildout:eggs} +extra-paths = + testapp |