Fix the fixture, and update for django 1.3, add dist and egg-info to gitignore

This commit is contained in:
Issac Kelly
2011-03-25 18:02:43 -04:00
parent eca88be838
commit 021a48c843
72 changed files with 121 additions and 26 deletions

View File

@ -55,9 +55,9 @@ Adding To Your Django Project
./manage.py syncdb
4. Inside your ``MEDIA_ROOT`` folder, create a new folder called ``helpdesk`` and copy the contents of ``helpdesk/htdocs`` into it. Alternatively, create a symlink::
4. [If you're not using django.contrib.staticfiles] Inside your ``STATIC_ROOT`` folder, create a new folder called ``helpdesk`` and copy the contents of ``helpdesk/static`` into it. Alternatively, create a symlink::
ln -s /path/to/helpdesk/htdocs /path/to/media/helpdesk
ln -s /path/to/helpdesk/static/helpdesk /path/to/static/helpdesk
5. Inside your ``MEDIA_ROOT`` folder, inside the ``helpdesk`` folder, is a folder called ``attachments``. Ensure your web server software can write to this folder - something like this should do the trick::