diff options
author | Frederick Muriuki Muriithi | 2021-12-06 17:58:28 +0300 |
---|---|---|
committer | Frederick Muriuki Muriithi | 2022-01-28 08:07:26 +0300 |
commit | bdf3de41c7c7202e37cf1bd762ede04333c222c8 (patch) | |
tree | d85f84bacaf8b53ac56606a07ed559241da6bdf0 /bin | |
parent | 04ef9ee2f18e812b4a24d478bdbf78303923623e (diff) | |
download | genenetwork2-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-x | bin/genenetwork2 | 2 |
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 $? |