Fix for mongo.
[mediagoblin.git] / lazyserver.sh
index bd93b10978b72b18195ea055b703ad86bf8f9bc2..843993e6c05f2bef897a644c345564d7dc3d14fd 100755 (executable)
 # You should have received a copy of the GNU Affero General Public License
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
+#
+# This runs Mediagoblin using Paste with Celery set to always eager mode.
+# 
+
+if [ "$1" = "-h" ]
+then
+    echo "$0 [-h] [-c paste.ini] [ARGS_to_paster ...]"
+    echo ""
+    echo "   For example:"
+    echo "         $0 -c fcgi.ini port_number=23371"
+    echo "     or: $0 --server-name=fcgi --log-file=paste.log"
+    echo ""
+    echo "   The configfile defaults to paste_local.ini,"
+    echo "   if that is readable, otherwise paste.ini."
+    exit 1
+fi
+
+PASTE_INI=paste.ini
+
+if [ -r paste_local.ini ]
+then
+    PASTE_INI=paste_local.ini
+fi
+
+if [ "$1" = "-c" ]
+then
+    PASTE_INI="$2"
+    shift
+    shift
+fi
+
+echo "Using paste config: $PASTE_INI"
+
 if [ -f ./bin/paster ]; then
     echo "Using ./bin/paster";
     export PASTER="./bin/paster";
@@ -27,4 +60,5 @@ else
     exit 1
 fi
 
-CELERY_ALWAYS_EAGER=true $PASTER serve server.ini --reload
+set -x
+CELERY_ALWAYS_EAGER=true $PASTER serve $PASTE_INI "$@" --reload