From 0e935ee7c21a4afb84f1188e85b2dc04101ce2ff Mon Sep 17 00:00:00 2001 From: Thibaut Lunet Date: Mon, 17 Jul 2023 10:46:34 +0200 Subject: [PATCH] TL: deployment settings and website link --- README.md | 2 ++ deploy.sh | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 52e5853..944524b 100644 --- a/README.md +++ b/README.md @@ -4,6 +4,8 @@ Develop a python code based on a generic framework allowing to investigate and analyze the performance of iterative parallel-in-time (PinT) algorithms : [blockops](./blockops/) +Available now at : https://jupyterhub.mat.tu-harburg.de/blockops/ + Implement a graphical user interface that could be exposed through a [demonstration website (web api)](./doc/website.md). **Existing Apps** (the links might change) diff --git a/deploy.sh b/deploy.sh index 1a12cf9..590a22e 100755 --- a/deploy.sh +++ b/deploy.sh @@ -11,5 +11,5 @@ $VENV/bin/pip install -r requirements.txt echo " -------------------------------" echo " " echo " ===> Starting gunicorn server..." -$VENV/bin/gunicorn -w 4 -b 0.0.0.0 'web:deploy()' +$VENV/bin/gunicorn -w 4 -b 0.0.0.0:2024 'web:deploy()'