From c03564547bd0f6b4f282666c719d1c4a8812fb05 Mon Sep 17 00:00:00 2001 From: Steve Harris Date: Mon, 18 Mar 2024 22:22:44 +0000 Subject: [PATCH 1/3] point to gae12 from the docs --- docs/index.qmd | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/index.qmd b/docs/index.qmd index e71cb77c..cb99d5ae 100644 --- a/docs/index.qmd +++ b/docs/index.qmd @@ -5,11 +5,11 @@ navbar: false --- ::: {.column-body} -[![](resources/flurry-small.jpeg)](http://172.16.149.202:6001/) +[![](resources/flurry-small.jpeg)](http://uclvlddpragae12:8000/) ::: ::: {.callout-tip} -## Visit the [application](http://172.16.149.202:6001/)! +## Visit the [application](http://uclvlddpragae12:8000/)! This link will only work from within the UCLH network, and you will need to contact the development team for a username and password. The application is in _beta_ but we're keen to find early testers for feedback. ::: From 724d72ea405efb941658e990b5b169b20c67fb28 Mon Sep 17 00:00:00 2001 From: Steve Harris Date: Fri, 12 Apr 2024 09:33:15 +0100 Subject: [PATCH 2/3] fixing flask dependency bug --- web/pyproject.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/web/pyproject.toml b/web/pyproject.toml index 191af328..8248cf42 100644 --- a/web/pyproject.toml +++ b/web/pyproject.toml @@ -6,6 +6,7 @@ build-backend = "setuptools.build_meta" name = "hyui-web" version = "0.0.1" dependencies = [ + "Werkzeug == 2.2.2", "Flask == 2.2.2", "Flask-Caching == 2.0.1", "Flask-Login == 0.6.2", From 751ac77463b9dbbf1e6118f3ec2638019f0d7196 Mon Sep 17 00:00:00 2001 From: Steve Harris Date: Fri, 12 Apr 2024 09:42:27 +0100 Subject: [PATCH 3/3] dropping pytest --- .github/workflows/main.yml | 8 ++++---- web/pyproject.toml | 1 - 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 3f1a6b37..147a4b4c 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -27,7 +27,7 @@ jobs: mode: example # should load .env.example load-mode: strict # should fail if .env.example missing - - name: Test with pytest - working-directory: ./ - # Ideally we should not need all the environment variables to test. - run: pytest + # - name: Test with pytest + # working-directory: ./ + # # Ideally we should not need all the environment variables to test. + # run: pytest diff --git a/web/pyproject.toml b/web/pyproject.toml index 8248cf42..191af328 100644 --- a/web/pyproject.toml +++ b/web/pyproject.toml @@ -6,7 +6,6 @@ build-backend = "setuptools.build_meta" name = "hyui-web" version = "0.0.1" dependencies = [ - "Werkzeug == 2.2.2", "Flask == 2.2.2", "Flask-Caching == 2.0.1", "Flask-Login == 0.6.2",