Tweaks maketarball.sh
[mediagoblin.git] / lazyserver.sh
CommitLineData
678a504a
CAW
1#!/bin/sh
2
3# GNU MediaGoblin -- federated, autonomous media hosting
4# Copyright (C) 2011 Free Software Foundation, Inc
5#
6# This program is free software: you can redistribute it and/or modify
7# it under the terms of the GNU Affero General Public License as published by
8# the Free Software Foundation, either version 3 of the License, or
9# (at your option) any later version.
10#
11# This program is distributed in the hope that it will be useful,
12# but WITHOUT ANY WARRANTY; without even the implied warranty of
13# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14# GNU Affero General Public License for more details.
15#
16# You should have received a copy of the GNU Affero General Public License
17# along with this program. If not, see <http://www.gnu.org/licenses/>.
18
472a8387
E
19if [ "$1" = "-h" ]
20then
21 echo "$0 [-h] [-c paste.ini] ARGS_to_paster"
22 echo " For example:"
23 echo " $0 -c fcgi.ini port_number=23371"
24 exit 1
25fi
26
27PASTE_INI=paste.ini
28if [ "$1" = "-c" ]
29then
30 PASTE_INI="$2"
31 shift
32 shift
33fi
34
678a504a
CAW
35if [ -f ./bin/paster ]; then
36 echo "Using ./bin/paster";
37 export PASTER="./bin/paster";
38elif which paster > /dev/null; then
39 echo "Using paster from \$PATH";
40 export PASTER="paster";
41else
42 echo "No paster found, exiting! X_X";
43 exit 1
44fi
45
472a8387
E
46set -x
47CELERY_ALWAYS_EAGER=true $PASTER serve $PASTE_INI "$@" --reload