PikiWiki
Links
Install
Install Install…
Activate the
pinax-envvirtual environment.Create a folder for the sample project.
mkdir pinax-pikiwiki-demo-site cd pinax-pikiwiki-demo-site
Check-out the source code for the wiki:
hg clone http://bitbucket.org/barttc/pinax-pikiwiki/
Install the dependencies:
pip install -U -r ./pinax-pikiwiki/pikiwiki/requirements.txt
Change into the
pikiwikidemonstration project folder:cd pinax-pikiwiki/pikiwiki/
Sync the database:
python manage.py syncdb
Create a folder for your static root (don’t know what this is yet):
mkdir my-static-root
Update
settings.pyand set the location ofSTATIC_ROOT:STATIC_ROOT = 'my-static-root'
For more information see settings.py
Build the media (don’t know what this is yet):
python manage.py build_media -all