Created
December 31, 2011 13:33
-
-
Save pigeonflight/1544015 to your computer and use it in GitHub Desktop.
install plone to run on wsgi
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
mkdir plonewsgi | |
cd plonewsgi | |
# works with python 2.7 virtualenv!! | |
virtualenv-2.7 --no-site-packages --distribute . | |
bin/pip install zc.buildout | |
bin/buildout init | |
wget --no-check-certificate https://raw.github.com/gist/1543998/34af3ad5cffe1df2f6c4253bc771de6bb3760857/buildout.cfg | |
bin/buildout | |
#to start your plone instance run | |
bin/paster serve plone.ini |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment