Thanks for making this beautiful MarkDown wiki become reality.
There are no real competitors out there, despite some funny experiments.
As I am trying to find my way around django-wiki,
I found some points worth mentionning, esp. regarding the docs:
__prequisites (on Fedora / CentOS / RHEL), assuming pip and virtualenv(wrapper - for those who like) are well configured and just work
- sudo yum install -y libjpeg-devel libpng12-devel
__Initial setup
- cd django-wiki/
- virtualenv .
- . bin/activate
- pip install -r requirements.txt
* to successfully run the testproject (`python manage.py runserver`) I had to migrate its DB with `python manage.py migrate` to get the notifications working (again?).
* to create my new project, still from the django-wiki/ root, I had to run `python ./lib/python2.7/site-packages/django/bin/django-admin.py startproject MarkDownWiki`
- cd MarkDownWiki
- nano MarkDownWiki/settings.py < fill with breadcrumbs from the testproject plus raw documentation
- python manage.py syncdb
- python manage.py migrate
- python manage.py runserver
I wonder if there is a way to compensate the strange django-admin.py path/usage within the virtualenv.
__docs improvements
I am lucky I have seen Django already; others might get crazy without clearer explanations.
As it's running so well in dev (the testproject) I should now try to create my own site (using SQLite for the moment) and if successful, deploy it somewhere online, to see how it performs.
Thanks for this nice work; as master ran quite flawlessly, is a new, feature-frozen release expected soon?
Ciao,
Jon