Adjusting hackinghowto docs to reflect change in server/tests commands
authorChristopher Allan Webber <cwebber@dustycloud.org>
Sun, 19 Jun 2011 16:50:05 +0000 (11:50 -0500)
committerChristopher Allan Webber <cwebber@dustycloud.org>
Sun, 19 Jun 2011 16:50:05 +0000 (11:50 -0500)
docs/hackinghowto.rst

index d8bb9330ed8ffb8ddda13a21d4720d54d099d578..e1cae992d2ab7e437d42cbd6bc1c62ed2bf93aa4 100644 (file)
@@ -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