This repository is private.
All pages are served over SSL and all pushing and pulling is done over SSH.
No one may fork, clone, or view it unless they are added as a member.
Every repository with this icon (
) is private.
Every repository with this icon (
This repository is public.
Anyone may fork, clone, or view it.
Every repository with this icon (
) is public.
Every repository with this icon (
everyblock_code / ebwiki
| name | age | message | |
|---|---|---|---|
| .. | |||
| |
README.TXT | ||
| |
ebwiki/ |
ebwiki/README.TXT
======
ebwiki
======
A basic wiki.
Requirements
============
A recent Django release. It has been tested with Django revision 11079 from
Subversion. When Django 1.1 is released, that should work as well.
Quickstart
==========
0. Install Django, PostgreSQL, and psycopg2.
1. Install the ebwiki package by putting it on your Python path.
2. Start a Django project (using Django 1.1, not 1.0). See the Django Book and
Django docs for more:
http://djangobook.com/en/2.0/
http://docs.djangoproject.com/en/dev/
3. Update your settings file. It's probably easiest to just start with the
file ebblog/settings.py and tweak that (or import from it in your own
settings file). The application won't work until you set the following:
DATABASE_USER
DATABASE_NAME
DATABASE_HOST
DATABASE_PORT
If you decide not to start with ebwiki.settings you'll also need to add
ebwiki.wiki.urls to your urlconf and add the absolute path to
ebwiki/templates to your TEMPLATE_DIRS setting.
4. Run "django-admin.py syncdb" to create all of the database tables.
5. Run "django-admin.py runserver" and go to http://127.0.0.1:8000/ in your
Web browser to see the site in action.








