diff options
-rw-r--r-- | docs/hackinghowto.rst | 2 | ||||
-rwxr-xr-x | lazyserver.sh | 2 | ||||
-rw-r--r-- | paste.ini (renamed from server.ini) | 0 |
3 files changed, 2 insertions, 2 deletions
diff --git a/docs/hackinghowto.rst b/docs/hackinghowto.rst index b03efa91..911f2340 100644 --- a/docs/hackinghowto.rst +++ b/docs/hackinghowto.rst @@ -136,7 +136,7 @@ This is fine in development, but if you want to actually run celery separately for testing (or deployment purposes), you'll want to run the server independently:: - ./bin/paster serve server.ini --reload + ./bin/paster serve paste.ini --reload Running celeryd diff --git a/lazyserver.sh b/lazyserver.sh index bd93b109..fdb03ba0 100755 --- a/lazyserver.sh +++ b/lazyserver.sh @@ -27,4 +27,4 @@ else exit 1 fi -CELERY_ALWAYS_EAGER=true $PASTER serve server.ini --reload +CELERY_ALWAYS_EAGER=true $PASTER serve paste.ini --reload |