tree: 1090e5925599808bf8064b0bb3db9fbae15bc8ca [path history] [tgz]
  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

~$ mkvirtualenv 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).