diff options
author | Frederick Muriuki Muriithi | 2021-12-06 17:58:28 +0300 |
---|---|---|
committer | zsloan | 2022-01-29 00:42:44 -0600 |
commit | a01033438a85e3097e4ade30e9a208fd5109d4e1 (patch) | |
tree | 256aeec8bb4cdaa9101581709568b5506838f791 /bin | |
parent | b9f16a3b28c4d996ac91befa5a919a9e0a7ac981 (diff) | |
download | genenetwork2-a01033438a85e3097e4ade30e9a208fd5109d4e1.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-x | bin/genenetwork2 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/genenetwork2 b/bin/genenetwork2 index 1d645c23..0a2c18cf 100755 --- a/bin/genenetwork2 +++ b/bin/genenetwork2 @@ -192,7 +192,7 @@ if [ "$1" = '-gunicorn-dev' ] ; then cd $GN2_BASE_DIR/wqflask echo PYTHONPATH=$PYTHONPATH 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 $? |