Instruct to use virtualenv instead of mkvirtualenv

git-svn-id: https://svn.apache.org/repos/asf/allura/site/trunk@1691581 13f79535-47bb-0310-9956-ffa450edef68
1 file changed
tree: 81a93c1bb4a5a42e362968a5cf4bc85dcf3e091e
  1. _src/
  2. feeds/
  3. theme/
  4. .htaccess
  5. 404.html
  6. favicon.ico
  7. index.html
  8. README.md
  9. robots.txt
README.md

We're using Pelican to generate static site. All source files are placed in the _src/ directory. Generated content is placed under root directory.

Bootstrapping pelican

~$ virtualenv allura-site
~$ pip install pelican markdown

Working on site

~$ cd _src

In two separate terminal windows run the following commands:

~$ make regenerate  # watch source files and regenerate site
~$ make serve       # serve generated site at http://localhost:8000

When changes are looking good - commit them (including generated files).