63818a6a85bec19c90c5a553aaba6c40a020ab5f
[mediagoblin.git] / lazyserver.sh
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
19 if [ "$1" = "-h" ]
20 then
21 echo "$0 [-h] [-c paste.ini] [ARGS_to_paster ...]"
22 echo ""
23 echo " For example:"
24 echo " $0 -c fcgi.ini port_number=23371"
25 echo " or: $0 --server-name=fcgi"
26 echo ""
27 echo " The configfile defaults to paste_local.ini,"
28 echo " if that is readable, otherwise paste.ini."
29 exit 1
30 fi
31
32 PASTE_INI=paste.ini
33
34 if [ -r paste_local.ini ]
35 then
36 PASTE_INI=paste_local.ini
37 fi
38
39 if [ "$1" = "-c" ]
40 then
41 PASTE_INI="$2"
42 shift
43 shift
44 fi
45
46 echo "Using paste config: $PASTE_INI"
47
48 if [ -f ./bin/paster ]; then
49 echo "Using ./bin/paster";
50 export PASTER="./bin/paster";
51 elif which paster > /dev/null; then
52 echo "Using paster from \$PATH";
53 export PASTER="paster";
54 else
55 echo "No paster found, exiting! X_X";
56 exit 1
57 fi
58
59 set -x
60 CELERY_ALWAYS_EAGER=true $PASTER serve $PASTE_INI "$@" --reload