@@ -1,3 +1,3 @@
-#!/bin/bash
-
+#!/bin/bash
+
$PY2_GUNICORN app:app -c gunicorn_conf.py &
$PY3_GUNICORN app:app -c gunicorn_conf.py &
$PYPY_GUNICORN app:app -c gunicorn_conf.py &
@@ -1,5 +1,5 @@
-$NGINX_HOME/sbin/nginx -c $TROOT/nginx.conf
+$NGINX_HOME/sbin/nginx -c $TROOT/nginx.conf
$PY2_ROOT/bin/uwsgi --ini uwsgi.ini --processes ${MAX_THREADS} --wsgi app:app &
$PY2_GUNICORN wsgi:app -c gunicorn_conf.py &
$PY3_GUNICORN wsgi:app -c gunicorn_conf.py &
$PY2 server.py --port=8080 --mongo=${DBHOST} --logging=error &
$PY2 server.py --port=8080 --postgres=${DBHOST} --logging=error &
$PY3 server.py --port=8080 --mongo=${DBHOST} --logging=error &
$PY2_ROOT/bin/uwsgi --master -L -l 5000 --gevent 1000 --http :8080 --http-keepalive --http-processes ${MAX_THREADS} -p ${MAX_THREADS} -w hello --add-header "Connection: keep-alive" --pidfile /tmp/uwsgi.pid &
-$NGINX_HOME/sbin/nginx -c ${TROOT}/nginx.conf
+$NGINX_HOME/sbin/nginx -c ${TROOT}/nginx.conf
$PY2_ROOT/bin/uwsgi --ini uwsgi.ini --processes ${MAX_THREADS} --gevent 1000 --wsgi hello &
$PY2_GUNICORN hello:app -c gunicorn_conf.py &
$PY2_ROOT/bin/uwsgi --ini uwsgi.ini --processes ${MAX_THREADS} --wsgi hello:app &
export RACKET_HOME=${IROOT}/racket
@@ -1,4 +1,4 @@
-cd bench
+cd bench
$RACKET_HOME/bin/racket -t bench.rkt -- ${DBHOST} &