Skip to content

Commit

Permalink
Merge branch 'release_18.09' into dev
Browse files Browse the repository at this point in the history
  • Loading branch information
nsoranzo committed Oct 1, 2018
2 parents 55c9096 + 1a3e9ae commit 260e37f
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 1 deletion.
2 changes: 1 addition & 1 deletion client/gulpfile.js
Expand Up @@ -131,4 +131,4 @@ gulp.task("watch-style", function() {

gulp.task("staging", ["stage-libs", "fonts"]);

gulp.task("default", ["scripts", "libs", "plugins"]);
gulp.task("default", ["scripts", "libs"]);
1 change: 1 addition & 0 deletions lib/galaxy/dependencies/pipfiles/default/Pipfile
Expand Up @@ -9,6 +9,7 @@ verify_ssl = true
name = "pypi"

[dev-packages]
gunicorn = "*"
lxml = "!=4.2.2"
mock = "*"
NoseHTML = "*"
Expand Down
Expand Up @@ -10,6 +10,7 @@ chardet==3.0.4
commonmark==0.5.4
docutils==0.14
funcsigs==1.0.2; python_version < '3.3'
gunicorn==19.9.0
idna==2.7
imagesize==1.1.0; python_version != '3.3.*'
jinja2==2.10
Expand Down
4 changes: 4 additions & 0 deletions scripts/common_startup_functions.sh
Expand Up @@ -157,6 +157,10 @@ find_server() {
fi
server_args="$server_args $uwsgi_args"
pid_log_paster_args=""
elif [ "$APP_WEBSERVER" = "gunicorn" ];
then
export GUNICORN_CMD_ARGS="${GUNICORN_CMD_ARGS:-\"--bind=localhost:8080\"}"
server_args="$APP_WEBSERVER --pythonpath lib --paste \"$server_config\""
else
run_server="python"
server_args="./scripts/paster.py serve \"$server_config\" $paster_args"
Expand Down

0 comments on commit 260e37f

Please sign in to comment.