aboutsummaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorFrederick Muriuki Muriithi2021-12-06 17:58:28 +0300
committerFrederick Muriuki Muriithi2022-01-28 08:07:26 +0300
commitbdf3de41c7c7202e37cf1bd762ede04333c222c8 (patch)
treed85f84bacaf8b53ac56606a07ed559241da6bdf0 /bin
parent04ef9ee2f18e812b4a24d478bdbf78303923623e (diff)
downloadgenenetwork2-bdf3de41c7c7202e37cf1bd762ede04333c222c8.tar.gz
Add "Partial Correlations" UI elements on collections page
Issue: https://github.com/genenetwork/gn-gemtext-threads/blob/main/topics/gn1-migration-to-gn2/partial-correlations.gmi * Add UI elements to trigger the partial correlations feature * Connect partial correlation view to the application * Point to correct application element for gunicorn
Diffstat (limited to 'bin')
-rwxr-xr-xbin/genenetwork22
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/genenetwork2 b/bin/genenetwork2
index 7669a89a..024f34d2 100755
--- a/bin/genenetwork2
+++ b/bin/genenetwork2
@@ -139,7 +139,7 @@ fi
if [ "$1" = '-gunicorn-dev' ] ; then
cd $GN2_BASE_DIR/wqflask
if [ -z $SERVER_PORT ]; then echo "ERROR: Provide a SERVER_PORT" ; exit 1 ; fi
- cmd="--bind 0.0.0.0:$SERVER_PORT --workers=1 --timeout 180 --reload wsgi"
+ cmd="--bind 0.0.0.0:$SERVER_PORT --workers=1 --timeout 180 --reload run_gunicorn:app"
echo RUNNING gunicorn $cmd
gunicorn $cmd
exit $?