aboutsummaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorJoar Wandborg <git@wandborg.com>2011-05-07 03:11:36 +0200
committerJoar Wandborg <git@wandborg.com>2011-05-07 03:11:36 +0200
commit88bcdcd7d28d8e5548aeefa0a69e8af3773870a9 (patch)
tree0b14edd0dc44691068c631ddfc59ff6c890fc69d /docs
parent5c42a82c5ad4fa410219084a6f43bdc414369114 (diff)
parent1c424df505b3c9f9cceb84a4fd0ac1867b7ed9b4 (diff)
downloadmediagoblin-88bcdcd7d28d8e5548aeefa0a69e8af3773870a9.tar.lz
mediagoblin-88bcdcd7d28d8e5548aeefa0a69e8af3773870a9.tar.xz
mediagoblin-88bcdcd7d28d8e5548aeefa0a69e8af3773870a9.zip
Merge branch 'master' of http://git.gitorious.org/mediagoblin/mediagoblin
Diffstat (limited to 'docs')
-rw-r--r--docs/hackinghowto.rst50
1 files changed, 31 insertions, 19 deletions
diff --git a/docs/hackinghowto.rst b/docs/hackinghowto.rst
index fe2411bb..fdb53a25 100644
--- a/docs/hackinghowto.rst
+++ b/docs/hackinghowto.rst
@@ -95,6 +95,34 @@ changed. To do that, run::
need to do this when you've made code changes.
+Running the server
+==================
+
+Run::
+
+ ./bin/paster serve mediagoblin.ini --reload
+
+
+Running celeryd
+===============
+
+You need to do this if you want your media to process and actually
+show up. It's probably a good idea in development to have the web
+server (above) running in one terminal and celeryd in another window.
+
+Run::
+
+ CELERY_CONFIG_MODULE=mediagoblin.celery_setup.from_celery ./bin/celeryd
+
+
+Running the test suite
+======================
+
+Run::
+
+ ./bin/nosetests
+
+
Wiping your environment for a clean-slate
-----------------------------------------
@@ -117,25 +145,9 @@ Delete the following directories:
.. YouCanHelp::
- If you're familiar with MongoDB and bash, we'd love to get a bash
- script that removes all the GNU MediaGoblin data from an existing
- MongoDB instance. Let us know!
-
-
-Running the server
-==================
-
-Run::
-
- ./bin/paster serve mediagoblin.ini --reload
-
-
-Running the test suite
-======================
-
-Run::
-
- ./bin/nosetests
+ If you're familiar with MongoDB, we'd love to get a `script that
+ removes all the GNU MediaGoblin data from an existing instance
+ <http://bugs.foocorp.net/issues/296>`_. Let us know!
Quickstart for Django programmers