Skip to content

Commit

Permalink
Update quickstart steps.
Browse files Browse the repository at this point in the history
  • Loading branch information
James Socol committed Jul 12, 2011
1 parent e53148d commit 1c5ae0c
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions docs/quickstart.rst
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -136,6 +136,20 @@ with Django's ``createsuperuser`` management command::
Just follow the prompts. Just follow the prompts.




Uploads
=======

Doozer has the ability to upload images for screenshots. To make this work,
you'll need to create a directory (it's specifically *not* under version
control)::

mkdir -p media/upload
chmod -R a+w media/upload

Whoever the webserver is running as needs to be able to write to
``media/upload``.


Up and Running Up and Running
============== ==============


Expand All @@ -145,3 +159,19 @@ To see if you've got everything up and running, start the Django dev server::


and navigate to ``http://localhost:8000/``. You should see the Doozer home and navigate to ``http://localhost:8000/``. You should see the Doozer home
page! page!


Deploying with Apache
=====================

If you're deploying with Apache and ``mod_wsgi``, you'll need to know a couple
things:

* The WSGI endpoint is ``wsgi/doozer.wsgi``.
* The ``WSGIScriptAlias`` should be ``/``.
* You'll need to set up a couple ``Alias`` directives (below).

::

Alias /media /path/to/doozer/media
Alias /admin-media /path/to/doozer/vendor/django/django/contrib/admin/media

0 comments on commit 1c5ae0c

Please sign in to comment.