aboutsummaryrefslogtreecommitdiffstats
path: root/docs/hackinghowto.rst
diff options
context:
space:
mode:
authorChristopher Allan Webber <cwebber@dustycloud.org>2011-06-19 12:59:19 -0500
committerChristopher Allan Webber <cwebber@dustycloud.org>2011-06-19 12:59:19 -0500
commitfa4e6b279bddb30074c63cfc795a527a8a60c06d (patch)
treed7819ab115dee9c28e2df8ab352a691caeaa366a /docs/hackinghowto.rst
parentf2f3fe33e90ae7bc2f621bbd3cb003e098d130c8 (diff)
parent77edca545b46ddbbd3ff79f4b8ee7b1bee12b43a (diff)
downloadmediagoblin-fa4e6b279bddb30074c63cfc795a527a8a60c06d.tar.lz
mediagoblin-fa4e6b279bddb30074c63cfc795a527a8a60c06d.tar.xz
mediagoblin-fa4e6b279bddb30074c63cfc795a527a8a60c06d.zip
Merge branch 'configobj'
Diffstat (limited to 'docs/hackinghowto.rst')
-rw-r--r--docs/hackinghowto.rst6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/hackinghowto.rst b/docs/hackinghowto.rst
index d8bb9330..e1cae992 100644
--- a/docs/hackinghowto.rst
+++ b/docs/hackinghowto.rst
@@ -125,7 +125,7 @@ Running the server
Run::
- ./bin/paster serve mediagoblin.ini --reload
+ ./bin/paster serve server.ini --reload
Running celeryd
@@ -143,7 +143,7 @@ Run::
Too much work? Don't want to run an http server and celeryd at the
same time? For development purposes there's a shortcut::
- CELERY_ALWAYS_EAGER=true ./bin/paster serve mediagoblin.ini --reload
+ CELERY_ALWAYS_EAGER=true ./bin/paster serve server.ini --reload
This way the web server will block on processing items until they are
done, but you don't need to run celery separately (which is probably
@@ -156,7 +156,7 @@ Running the test suite
Run::
- CELERY_CONFIG_MODULE=mediagoblin.celery_setup.from_tests ./bin/nosetests
+ ./bin/nosetests
Running a shell